Skip to content

Commit

Permalink
Fix typo in macros in BasicNodeManager.h
Browse files Browse the repository at this point in the history
  • Loading branch information
jslee02 committed Feb 2, 2016
1 parent 0dad52c commit b575f52
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions dart/dynamics/detail/BasicNodeManager.h
Original file line number Diff line number Diff line change
Expand Up @@ -284,7 +284,7 @@ const NodeType* BasicNodeManagerForSkeleton::getNode(
//==============================================================================
#define DART_BAKE_SPECIALIZED_NODE_SKEL_IRREGULAR( TypeName, AddonName, PluralAddonName )\
DART_BAKE_SPECIALIZED_NODE_IRREGULAR( TypeName, AddonName, PluralAddonName )\
inline size_t getNum ## PluralAddoName (size_t treeIndex) const\
inline size_t getNum ## PluralAddonName (size_t treeIndex) const\
{ return getNumNodes< TypeName >(treeIndex); }\
inline TypeName * get ## AddonName (size_t treeIndex, size_t nodeIndex)\
{ return getNode< TypeName >(treeIndex, nodeIndex); }\
Expand Down Expand Up @@ -313,7 +313,7 @@ const NodeType* BasicNodeManagerForSkeleton::getNode(
//==============================================================================
#define DART_BAKE_SPECIALIZED_NODE_SKEL_IRREGULAR_DECLARATIONS( TypeName, AddonName, PluralAddonName )\
DART_BAKE_SPECIALIZED_NODE_IRREGULAR_DECLARATIONS( TypeName, AddonName, PluralAddonName )\
size_t getNum ## PluralAddoName (size_t treeIndex) const;\
size_t getNum ## PluralAddonName (size_t treeIndex) const;\
TypeName * get ## AddonName (size_t treeIndex, size_t nodeIndex);\
const TypeName * get ## AddonName (size_t treeIndex, size_t nodeIndex) const;\
\
Expand All @@ -340,7 +340,7 @@ const NodeType* BasicNodeManagerForSkeleton::getNode(
//==============================================================================
#define DART_BAKE_SPECIALIZED_NODE_SKEL_IRREGULAR_DEFINITIONS( ClassName, TypeName, AddonName, PluralAddonName )\
DART_BAKE_SPECIALIZED_NODE_IRREGULAR_DEFINITIONS( ClassName, TypeName, AddonName, PluralAddonName )\
size_t ClassName :: getNum ## PluralAddoName (size_t treeIndex) const\
size_t ClassName :: getNum ## PluralAddonName (size_t treeIndex) const\
{ return getNumNodes< TypeName >(treeIndex); }\
TypeName * ClassName :: get ## AddonName (size_t treeIndex, size_t nodeIndex)\
{ return getNode< TypeName >(treeIndex, nodeIndex); }\
Expand Down

0 comments on commit b575f52

Please sign in to comment.