summaryrefslogtreecommitdiff
path: root/AK/StdLibExtras.h
diff options
context:
space:
mode:
authorAndreas Kling <awesomekling@gmail.com>2019-06-27 16:01:24 +0200
committerAndreas Kling <awesomekling@gmail.com>2019-06-27 16:01:24 +0200
commit7f613c79cd0adff0df54e442d6f8b9bc435c6377 (patch)
treeac055e77f389bf53c9373e221dd4325ee95fcd97 /AK/StdLibExtras.h
parent516d736afe192948a44c15a97a863bc8f9ea7682 (diff)
downloadserenity-7f613c79cd0adff0df54e442d6f8b9bc435c6377.zip
AK: Oops, fix typo in RemoveVolatile<T> helper.
Diffstat (limited to 'AK/StdLibExtras.h')
-rw-r--r--AK/StdLibExtras.h2
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>