diff options
Diffstat (limited to 'Source/cmString.hxx')
-rw-r--r-- | Source/cmString.hxx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/cmString.hxx b/Source/cmString.hxx index 050a2fd..a401ad1 100644 --- a/Source/cmString.hxx +++ b/Source/cmString.hxx @@ -725,7 +725,7 @@ struct StringAdd template <typename L, typename R> struct StringAdd<StringOpPlus<L, R>> : std::true_type { - typedef StringOpPlus<L, R> const& temp_type; + using temp_type = StringOpPlus<L, R> const&; static temp_type temp(temp_type s) { return s; } }; |