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 919eea4 commit 4c65f01Copy full SHA for 4c65f01
regex.cpp
@@ -22,6 +22,7 @@
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;
@@ -123,6 +124,7 @@ namespace regex_cs_ext {
123
124
void init()
125
{
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)));
0 commit comments