Skip to content

Commit

Permalink
Update iutest_package.hpp
Browse files Browse the repository at this point in the history
  • Loading branch information
srz-zumix committed Aug 14, 2018
1 parent a5d7557 commit 7ab240e
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions include/iutest_package.hpp
Expand Up @@ -196,6 +196,13 @@ inline ::std::string IUTEST_ATTRIBUTE_UNUSED_ iuTest_ConcatTestCaseName(const ::
{
return package + testcase_name;
}
#if IUTEST_HAS_RVALUE_REFS
/** @overload */
inline ::std::string IUTEST_ATTRIBUTE_UNUSED_ iuTest_ConcatTestCaseName(const ::std::string&& package, const char* testcase_name)
{
return package + testcase_name;
}
#endif

#endif

Expand Down

0 comments on commit 7ab240e

Please sign in to comment.