AK: Oops, fix typo in RemoveVolatile<T> helper.

This commit is contained in:
Andreas Kling 2019-06-27 16:01:24 +02:00
parent 516d736afe
commit 7f613c79cd

View file

@ -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>