mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-10-15 04:29:04 +00:00
14 lines
338 B
C++
14 lines
338 B
C++
#ifdef __clang__
|
|
|
|
#include <string>
|
|
#include <boost/test/unit_test.hpp>
|
|
|
|
namespace boost { namespace unit_test { namespace ut_detail {
|
|
std::string normalize_test_case_name(const_string name) {
|
|
return ( name[0] == '&' ? std::string(name.begin()+1, name.size()-1) : std::string(name.begin(), name.size() ));
|
|
}
|
|
}}}
|
|
|
|
#endif
|
|
|
|
|