mirror of
https://github.com/Kitware/CMake.git
synced 2026-01-16 03:32:18 -06:00
Run the `clang-format.bash` script to update our C and C++ code to a new include order `.clang-format`. Use `clang-format` version 6.0.
22 lines
178 B
C++
22 lines
178 B
C++
#include "None.hpp"
|
|
|
|
#include "None_p.h"
|
|
|
|
NonePrivate::NonePrivate()
|
|
{
|
|
}
|
|
|
|
NonePrivate::~NonePrivate()
|
|
{
|
|
}
|
|
|
|
None::None()
|
|
: d(new NonePrivate)
|
|
{
|
|
}
|
|
|
|
None::~None()
|
|
{
|
|
delete d;
|
|
}
|