Skip to content

Commit

Permalink
Merge pull request #13375 from rwcarlsen/fix-known-label-macro
Browse files Browse the repository at this point in the history
fix registerKnownLabelMacro typo
  • Loading branch information
permcody committed May 7, 2019
2 parents 761df01 + ec19178 commit 34bcba7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion framework/include/base/Registry.h
Expand Up @@ -22,7 +22,7 @@
/// when your app/module code may be compiled with other apps without your objects being
/// registered. Calling this multiple times with the same argument is safe.
#define registerKnownLabel(X) \
static char combineNames1(dummy_var_for_known_label, __LINE__) = Registry::addKnownLabel(X)
static char combineNames(dummy_var_for_known_label, __LINE__) = Registry::addKnownLabel(X)

/// add an Action to the registry with the given app name/label as being associated with the given
/// task (quoted string). classname is the (unquoted) c++ class.
Expand Down

0 comments on commit 34bcba7

Please sign in to comment.