We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9ba6d8f commit cd4b86bCopy full SHA for cd4b86b
regex.cpp
@@ -21,9 +21,6 @@
21
#include <regex>
22
#include <covscript/cni.hpp>
23
#include <covscript/extension.hpp>
24
-#include <covscript/extensions/char.hpp>
25
-#include <covscript/extensions/array.hpp>
26
-#include <covscript/extensions/string.hpp>
27
28
static cs::extension regex_ext;
29
static cs::extension regex_result_ext;
@@ -123,9 +120,6 @@ namespace regex_cs_ext {
123
120
124
121
void init()
125
122
{
126
- char_cs_ext::init();
127
- array_cs_ext::init();
128
- string_cs_ext::init();
129
regex_ext.add_var("result", var::make_protect<extension_t>(regex_result_ext_shared));
130
regex_ext.add_var("build", var::make_protect<callable>(cni(build)));
131
regex_ext.add_var("match", var::make_protect<callable>(cni(match)));
0 commit comments