1
0
forked from boostorg/core

Trim trailing spaces in boost::swap tests.

This commit is contained in:
Andrey Semashev
2023-01-07 01:54:22 +03:00
parent 8a8738a981
commit eda68d4086
14 changed files with 36 additions and 36 deletions

View File

@@ -59,7 +59,7 @@ public:
{
m_data = arg;
}
static unsigned int swap_count(){ return swapCount(); }
static unsigned int copy_count(){ return copyCount(); }
static unsigned int construct_count(){ return constructCount(); }
@@ -68,7 +68,7 @@ public:
static void reset()
{
swapCount() = 0;
copyCount() = 0;
copyCount() = 0;
constructCount() = 0;
destructCount() = 0;
}
@@ -80,19 +80,19 @@ private:
return value;
}
static unsigned int& copyCount()
static unsigned int& copyCount()
{
static unsigned int value = 0;
return value;
}
static unsigned int& constructCount()
static unsigned int& constructCount()
{
static unsigned int value = 0;
return value;
}
static unsigned int& destructCount()
static unsigned int& destructCount()
{
static unsigned int value = 0;
return value;