summaryrefslogtreecommitdiff
path: root/Source/Core/Common/CDUtils.cpp
diff options
context:
space:
mode:
authorLioncash <mathew1800@gmail.com>2018-05-27 18:21:59 -0400
committerLioncash <mathew1800@gmail.com>2018-05-27 18:30:58 -0400
commit1f75fa0aff03245417ce4c35ae4730e2b33fe5f1 (patch)
tree8298784d531dbb25cbc11531cbda65b8d0cfb531 /Source/Core/Common/CDUtils.cpp
parent5fdf171967ddb63d12f9f410178d6b7bc7115ee4 (diff)
CDUtils: Namespace code under the Common namespace
Diffstat (limited to 'Source/Core/Common/CDUtils.cpp')
-rw-r--r--Source/Core/Common/CDUtils.cpp3
1 files changed, 3 insertions, 0 deletions
diff --git a/Source/Core/Common/CDUtils.cpp b/Source/Core/Common/CDUtils.cpp
index c829189cf9..d3f0221fef 100644
--- a/Source/Core/Common/CDUtils.cpp
+++ b/Source/Core/Common/CDUtils.cpp
@@ -34,6 +34,8 @@
#include <linux/cdrom.h>
#endif
+namespace Common
+{
#ifdef _WIN32
// takes a root drive path, returns true if it is a cdrom drive
bool is_cdrom(const TCHAR* drive)
@@ -219,3 +221,4 @@ bool cdio_is_cdrom(std::string device)
}
return false;
}
+} // namespace Common