diff options
author | Boris Kolpackov <boris@codesynthesis.com> | 2011-10-19 10:47:41 +0200 |
---|---|---|
committer | Boris Kolpackov <boris@codesynthesis.com> | 2011-10-21 20:05:46 +0200 |
commit | bceb06251cdb572850b2e6e4d15cfb2ac32da417 (patch) | |
tree | 2e6af635da493c51d5f19b81e2a5506db90353ca /common/makefile | |
parent | 2d10422daab4b63307f3c1d9a6c08ee2c1b7c72e (diff) |
Add support for const data members
Const data members are automatically treated as readonly. New test:
const-member.
Diffstat (limited to 'common/makefile')
-rw-r--r-- | common/makefile | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/common/makefile b/common/makefile index 547e764..e5065cd 100644 --- a/common/makefile +++ b/common/makefile @@ -10,6 +10,7 @@ auto \ callback \ composite \ const \ +const-member \ container \ ctor \ default \ @@ -35,6 +36,7 @@ thread_tests := threads ifeq ($(db_id),oracle) tests := \ auto \ +const-member \ container \ lazy-ptr \ lifecycle \ |