diff --git a/Code/Framework/AzCore/AzCore/std/string/conversions.h b/Code/Framework/AzCore/AzCore/std/string/conversions.h index 2ccd82901c..9427eaccf6 100644 --- a/Code/Framework/AzCore/AzCore/std/string/conversions.h +++ b/Code/Framework/AzCore/AzCore/std/string/conversions.h @@ -288,7 +288,7 @@ namespace AZStd template auto to_string(Str& str, BoolType value) - -> std::enable_if_t, bool>> + -> enable_if_t, bool>> { str = value ? "true" : "false"; }