aboutsummaryrefslogtreecommitdiffstats
path: root/include/query_string.h
diff options
context:
space:
mode:
authorAntony Woods <acron1@gmail.com>2014-10-22 09:34:30 +0100
committerAntony Woods <acron1@gmail.com>2014-10-22 09:34:30 +0100
commit3a2d22dfe068553931ae86d0477eac3d07aa4668 (patch)
treead653d7e1f09d0e5b38d93e80ae2d3fdab2d52f7 /include/query_string.h
parent6a2def410cc2559aeb7a9d34821b5d195672fb3b (diff)
downloadcrow-3a2d22dfe068553931ae86d0477eac3d07aa4668.tar.gz
crow-3a2d22dfe068553931ae86d0477eac3d07aa4668.zip
Removed instance of 'using namespace std'
Diffstat (limited to 'include/query_string.h')
-rw-r--r--include/query_string.h8
1 files changed, 3 insertions, 5 deletions
diff --git a/include/query_string.h b/include/query_string.h
index 5a42782..afc112e 100644
--- a/include/query_string.h
+++ b/include/query_string.h
@@ -3,8 +3,6 @@
#include <stdio.h>
#include <string>
-using namespace std;
-
// ----------------------------------------------------------------------------
// qs_parse (modified)
// https://github.com/bartgrantham/qs_parse
@@ -273,16 +271,16 @@ namespace crow
}
- char* get (const string name) const
+ char* get (const std::string name) const
{
char* ret = qs_k2v(name.c_str(), _kv_pairs, _kv_size);
return ret != 0 ? ret : nullptr;
}
- vector<char*> get_list (const string name) const
+ vector<char*> get_list (const std::string name) const
{
vector<char*> ret;
- string plus = name + "[]";
+ std::string plus = name + "[]";
char* tmp = nullptr;
int count = 0;
do