diff options
Diffstat (limited to 'include')
| -rw-r--r-- | include/tag_string.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/include/tag_string.h b/include/tag_string.h index e28d18cd88..0cb057125f 100644 --- a/include/tag_string.h +++ b/include/tag_string.h @@ -34,8 +34,9 @@ public: static constexpr tag_type type = tag_type::String; //Constructors + tag_string() {} tag_string(const std::string& str); - tag_string(std::string&& str = ""); + tag_string(std::string&& str) noexcept; tag_string(const char* str); //Getters |
