Skip to content

Commit

Permalink
Merge pull request #2645 from nvmkuruc/tftokencat
Browse files Browse the repository at this point in the history
Replace `BOOST_PP_CAT` with `TF_PP_CAT` in `tf/staticTokens.h`

(Internal change: 2294941)
  • Loading branch information
pixar-oss committed Sep 18, 2023
2 parents 1eb9b30 + aec29b8 commit a68bc34
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions pxr/base/tf/staticTokens.h
Original file line number Diff line number Diff line change
Expand Up @@ -150,14 +150,14 @@ PXR_NAMESPACE_OPEN_SCOPE
// Note that this needs to be a unique struct name for each translation unit.
//
#define _TF_TOKENS_STRUCT_NAME_PRIVATE(key) \
BOOST_PP_CAT(key, _PrivateStaticTokenType)
TF_PP_CAT(key, _PrivateStaticTokenType)

// Private macro to generate struct name from key. This version is used
// by the public token declarations, and so key must be unique for the entire
// namespace.
//
#define _TF_TOKENS_STRUCT_NAME(key) \
BOOST_PP_CAT(key, _StaticTokenType)
TF_PP_CAT(key, _StaticTokenType)

///////////////////////////////////////////////////////////////////////////////
// Declaration Macros
Expand Down

0 comments on commit a68bc34

Please sign in to comment.