mirror of
https://github.com/google/googletest.git
synced 2025-04-05 05:25:03 +00:00
Update gtest-param-util.h
This commit is contained in:
parent
d547273268
commit
364eeb5d89
1 changed files with 2 additions and 2 deletions
|
@ -652,9 +652,9 @@ class ParameterizedTestSuiteInfo : public ParameterizedTestSuiteInfoBase {
|
|||
};
|
||||
typedef ::std::vector<InstantiationInfo> InstantiationContainer;
|
||||
|
||||
static std::string validParamChars = "_-:/";
|
||||
|
||||
static bool IsValidParamName(const std::string& name) {
|
||||
static constexpr validParamChars = "_-:/";
|
||||
|
||||
// Check for empty string
|
||||
if (name.empty()) return false;
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue