Skip to content

Commit

Permalink
Change ID prefix from $$ to something that passes better in the resul…
Browse files Browse the repository at this point in the history
…ting cmake dep file.
  • Loading branch information
carsonmcdonald committed Feb 21, 2010
1 parent aec0f56 commit d1d0654
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/lib/option.cpp
Expand Up @@ -121,7 +121,7 @@ vector<string> Option::DynamicMethodPostfixes;
vector<string> Option::DynamicClassPrefixes;
vector<string> Option::DynamicClassPostfixes;
set<string> Option::DynamicInvokeFunctions;
string Option::IdPrefix = "$$";
string Option::IdPrefix = "_DupId";
string Option::LambdaPrefix = "df_";
string Option::Tab = " ";

Expand Down

1 comment on commit d1d0654

@yaauie
Copy link

@yaauie yaauie commented on d1d0654 Mar 8, 2010

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

It looks like someone messed with the git history, since the contents of this commit is missing.

Manual fix:

Line 121 of src/lib/option.cpp becomes:
string Option::IdPrefix = "_DupId"

Please sign in to comment.