Remove trailing whitespace (#3668)

This commit is contained in:
John Vandenberg
2022-07-07 17:18:20 +08:00
committed by GitHub
parent 0af9524e16
commit 0e6e16645c
1330 changed files with 23570 additions and 23571 deletions

View File

@@ -38,7 +38,7 @@ struct IsReference
template <typename T>
struct IsReference<T&>
{
enum
enum
{
VALUE = 1
};
@@ -48,7 +48,7 @@ struct IsReference<T&>
template <typename T>
struct IsReference<const T&>
{
enum
enum
{
VALUE = 1
};
@@ -69,7 +69,7 @@ struct IsConst
template <typename T>
struct IsConst<const T&>
{
enum
enum
{
VALUE = 1
};
@@ -79,7 +79,7 @@ struct IsConst<const T&>
template <typename T>
struct IsConst<const T>
{
enum
enum
{
VALUE = 1
};