summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDavid Tardon <dtardon@redhat.com>2017-05-16 09:49:19 +0200
committerDavid Tardon <dtardon@redhat.com>2017-05-16 09:49:19 +0200
commit71c7a7b35e3a16cbbe2cec9eddd44bb8a63e9f96 (patch)
tree46d12dc4612f2bd97f328de718da2a442bb5d403
parent4ca3ae4493f48b4b3495f47d550f7fb99fb4eb68 (diff)
drop :: prefix
Change-Id: I5e7411a87bf9e3443b675984d2f9027638d886d9
-rw-r--r--src/lib/ABWCollector.cpp4
-rw-r--r--src/lib/ABWContentCollector.cpp2
-rw-r--r--src/lib/ABWParser.cpp2
3 files changed, 4 insertions, 4 deletions
diff --git a/src/lib/ABWCollector.cpp b/src/lib/ABWCollector.cpp
index 22dca94..7a38735 100644
--- a/src/lib/ABWCollector.cpp
+++ b/src/lib/ABWCollector.cpp
@@ -13,7 +13,7 @@
bool libabw::findInt(const std::string &str, int &res)
{
- using namespace ::boost::spirit::classic;
+ using namespace boost::spirit::classic;
if (str.empty())
return false;
@@ -47,7 +47,7 @@ void libabw::parsePropString(const std::string &str, ABWPropertyMap &props)
bool libabw::findDouble(const std::string &str, double &res, ABWUnit &unit)
{
- using namespace ::boost::spirit::classic;
+ using namespace boost::spirit::classic;
if (str.empty())
return false;
diff --git a/src/lib/ABWContentCollector.cpp b/src/lib/ABWContentCollector.cpp
index 8eded0c..725195a 100644
--- a/src/lib/ABWContentCollector.cpp
+++ b/src/lib/ABWContentCollector.cpp
@@ -244,7 +244,7 @@ void parseLang(const std::string &langStr, optional<std::string> &lang, optional
static std::string decodeUrl(const std::string &str)
{
- using namespace ::boost::spirit::classic;
+ using namespace boost::spirit::classic;
if (str.empty())
return str;
diff --git a/src/lib/ABWParser.cpp b/src/lib/ABWParser.cpp
index 778fd31..eed28e2 100644
--- a/src/lib/ABWParser.cpp
+++ b/src/lib/ABWParser.cpp
@@ -34,7 +34,7 @@ namespace
static bool findBool(const std::string &str, bool &res)
{
- using namespace ::boost::spirit::classic;
+ using namespace boost::spirit::classic;
if (str.empty())
return false;