We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5928515 commit 29d9599Copy full SHA for 29d9599
CxxParser/code_completion_api.h
@@ -6,6 +6,10 @@
6
#include "function.h"
7
#include "variable.h"
8
9
+#include <map>
10
+#include <string>
11
+#include <vector>
12
+
13
extern WXDLLIMPEXP_CL std::string get_scope_name(const std::string& in,
14
std::vector<std::string>& additionlNS,
15
const std::map<std::string, std::string>& ignoreTokens);
CxxParser/main.cpp
@@ -1,12 +1,7 @@
1
// test the parser
2
#include "code_completion_api.h"
3
4
-#include <errno.h>
5
-#include <map>
-#include <stdio.h>
-#include <string.h>
-#include <string>
-#include <vector>
+#include <cstring>
void testScopeParser(char* buf);
void testVarParser(char* buf);
0 commit comments