From 4467a957a498b93dbcaefbad97df24b43dfbc99d Mon Sep 17 00:00:00 2001 From: gcontini <1121667+gcontini@users.noreply.github.com> Date: 周日, 08 3月 2020 22:16:09 +0800 Subject: [PATCH] fix tests --- src/library/os/windows/cpu_info.cpp | 3 ++- 1 files changed, 2 insertions(+), 1 deletions(-) diff --git a/src/library/os/windows/cpu_info.cpp b/src/library/os/windows/cpu_info.cpp index 764b2fe..192e178 100644 --- a/src/library/os/windows/cpu_info.cpp +++ b/src/library/os/windows/cpu_info.cpp @@ -12,6 +12,7 @@ #include "../cpu_info.hpp" namespace license { +namespace os { using namespace std; CpuInfo::CpuInfo() {} @@ -43,5 +44,5 @@ __cpuid(cpui, 0x0); return string(reinterpret_cast<const char *>(cpui), 12); } - +} // namespace os } /* namespace license */ -- Gitblit v1.9.1