diff options
author | Boris Kolpackov <boris@codesynthesis.com> | 2012-09-17 08:29:41 +0200 |
---|---|---|
committer | Boris Kolpackov <boris@codesynthesis.com> | 2012-09-17 08:29:41 +0200 |
commit | 118995d34d2c9428654d45b8f7b7823339bda5cc (patch) | |
tree | d077a9eab98d3d018475be6c75f2968a13b19226 /common | |
parent | f399873d8df0cda717d525de02f561c88eb17c01 (diff) |
Use type name directly instead of typedef'ing alias
Diffstat (limited to 'common')
-rw-r--r-- | common/default/test.hxx | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/common/default/test.hxx b/common/default/test.hxx index cff2d0c..091b91a 100644 --- a/common/default/test.hxx +++ b/common/default/test.hxx @@ -10,8 +10,7 @@ enum color {red, green, blue}; -typedef unsigned long ulong; -#pragma db value(ulong) default(0) // @@ Can't do value(unsigned long). +#pragma db value(unsigned long) default(0) #pragma db object struct object |