diff options
author | Andreas Kling <awesomekling@gmail.com> | 2019-06-27 16:01:24 +0200 |
---|---|---|
committer | Andreas Kling <awesomekling@gmail.com> | 2019-06-27 16:01:24 +0200 |
commit | 7f613c79cd0adff0df54e442d6f8b9bc435c6377 (patch) | |
tree | ac055e77f389bf53c9373e221dd4325ee95fcd97 /AK/StdLibExtras.h | |
parent | 516d736afe192948a44c15a97a863bc8f9ea7682 (diff) | |
download | serenity-7f613c79cd0adff0df54e442d6f8b9bc435c6377.zip |
AK: Oops, fix typo in RemoveVolatile<T> helper.
Diffstat (limited to 'AK/StdLibExtras.h')
-rw-r--r-- | AK/StdLibExtras.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/AK/StdLibExtras.h b/AK/StdLibExtras.h index a1cf752157..05c442284f 100644 --- a/AK/StdLibExtras.h +++ b/AK/StdLibExtras.h @@ -130,7 +130,7 @@ struct RemoveVolatile { typedef T Type; }; template<class T> -struct RemoveVolatile<const T> { +struct RemoveVolatile<volatile T> { typedef T Type; }; template<class T> |