aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/test/unit_tests/shared/console.hpp
diff options
context:
space:
mode:
authorEgor Tensin <Egor.Tensin@gmail.com>2020-10-27 01:55:22 +0300
committerEgor Tensin <Egor.Tensin@gmail.com>2020-10-27 02:27:56 +0300
commit3a36e6c51974594d994562c712e068835aae85f1 (patch)
tree460a6e11ed579f42d03de0234786552ccffe2da4 /test/unit_tests/shared/console.hpp
parentclang-format (diff)
downloadwinapi-common-3a36e6c51974594d994562c712e068835aae85f1.tar.gz
winapi-common-3a36e6c51974594d994562c712e068835aae85f1.zip
VS 2013 workarounds
Diffstat (limited to 'test/unit_tests/shared/console.hpp')
-rw-r--r--test/unit_tests/shared/console.hpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/unit_tests/shared/console.hpp b/test/unit_tests/shared/console.hpp
index 0a415e5..faa887c 100644
--- a/test/unit_tests/shared/console.hpp
+++ b/test/unit_tests/shared/console.hpp
@@ -26,9 +26,9 @@ class Buffer {
public:
typedef CONSOLE_SCREEN_BUFFER_INFO Info;
- Buffer() : m_handle{winapi::Handle::std_out()}, m_info{get_info(m_handle)} {}
+ Buffer() : m_handle{winapi::Handle::std_out()}, m_info(get_info(m_handle)) {}
- Buffer(winapi::Handle&& handle) : m_handle{std::move(handle)}, m_info{get_info(m_handle)} {}
+ Buffer(winapi::Handle&& handle) : m_handle{std::move(handle)}, m_info(get_info(m_handle)) {}
std::size_t get_columns() const { return m_info.dwSize.X; }