summaryrefslogtreecommitdiff
path: root/TODO
diff options
context:
space:
mode:
authorPeter Wu <lekensteyn@gmail.com>2011-11-30 23:18:10 +0000
committerPeter Wu <lekensteyn@gmail.com>2011-11-30 23:18:10 +0000
commit9e797458dd8d144544564674a8767c077ed4bd39 (patch)
treed91b68e37c166b01c712a7b5ed9b2a87d29d68f4 /TODO
parentf8c1ccfac7fc22ba7d316a5b25ee58cd4d26a031 (diff)
downloadpp2cc-9e797458dd8d144544564674a8767c077ed4bd39.tar.gz
Support for all assignment except shifting, fix rightshift bug
Diffstat (limited to 'TODO')
-rw-r--r--TODO11
1 files changed, 2 insertions, 9 deletions
diff --git a/TODO b/TODO
index 0e74c12..ba21e8c 100644
--- a/TODO
+++ b/TODO
@@ -1,16 +1,9 @@
Support for other assignment operators:
-/= *= += -= %= <<= >>= |= &= ^=
+<<= >>=
Post decrement/increment operators:
p-- p++
-Indirection, address and pointers in general
-*x &x x.y x->y
-
-Arrays (definition and use)
-int x;
-int a[2] = {1, 2};
-a[2] = 2;
-x = a[2]
+x.y x->y
Function calls with arguments