diff options
Diffstat (limited to 'include/libfud.hpp')
-rw-r--r-- | include/libfud.hpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/libfud.hpp b/include/libfud.hpp index c670ed4..5bc1630 100644 --- a/include/libfud.hpp +++ b/include/libfud.hpp @@ -51,8 +51,8 @@ FUD fud(); Result<String, FudStatus> getEnv(const char* name); template <typename T> -concept CStringRepr = requires(T a) { - { a.c_str() } -> std::convertible_to<const char*>; +concept CStringRepr = requires(T strObj) { + { strObj.c_str() } -> std::convertible_to<const char*>; }; template <CStringRepr T> |