From 1369c80cd178b9eea833a2ea667a2549a6360d5e Mon Sep 17 00:00:00 2001 From: Gabriele Contini <contini.mailing@gmail.com> Date: 周日, 15 3月 2020 12:08:21 +0800 Subject: [PATCH] fix centos --- src/library/os/linux/cpu_info.cpp | 3 ++- 1 files changed, 2 insertions(+), 1 deletions(-) diff --git a/src/library/os/linux/cpu_info.cpp b/src/library/os/linux/cpu_info.cpp index 4b5ff85..b052a03 100644 --- a/src/library/os/linux/cpu_info.cpp +++ b/src/library/os/linux/cpu_info.cpp @@ -11,6 +11,7 @@ #include "../cpu_info.hpp" namespace license { +namespace os { using namespace std; struct CPUVendorID { @@ -52,5 +53,5 @@ CPUVendorID vendorID{.ebx = ebx, .edx = edx, .ecx = ecx}; return vendorID.toString(); } - +} // namespace os } /* namespace license */ -- Gitblit v1.9.1