Skip to content

Commit

Permalink
Replace multi-line macro with const variable
Browse files Browse the repository at this point in the history
  • Loading branch information
yebblies committed Jun 20, 2013
1 parent d3e0e0d commit 0457135
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions src/declaration.h
Expand Up @@ -87,11 +87,11 @@ enum PURE;
#define STCtemp 0x10000000000LL // temporary variable introduced by inlining
// and used only in backend process, so it's rvalue

#define STCStorageClass (STCauto | STCscope | STCstatic | STCextern | STCconst | STCfinal | \
STCabstract | STCsynchronized | STCdeprecated | STCoverride | STClazy | STCalias | \
STCout | STCin | \
STCmanifest | STCimmutable | STCshared | STCnothrow | STCpure | STCref | STCtls | \
STCgshared | STCproperty | STCsafe | STCtrusted | STCsystem | STCdisable)
const StorageClass STCStorageClass = (STCauto | STCscope | STCstatic | STCextern | STCconst | STCfinal |
STCabstract | STCsynchronized | STCdeprecated | STCoverride | STClazy | STCalias |
STCout | STCin |
STCmanifest | STCimmutable | STCshared | STCnothrow | STCpure | STCref | STCtls |
STCgshared | STCproperty | STCsafe | STCtrusted | STCsystem | STCdisable);

struct Match
{
Expand Down

0 comments on commit 0457135

Please sign in to comment.