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.
std::string
1 parent 6738f0c commit 60381d9Copy full SHA for 60381d9
bindings/pyroot/cppyy/CPyCppyy/src/Executors.cxx
@@ -1088,7 +1088,9 @@ struct InitExecFactories_t {
1088
gf["char16_t*"] = (ef_t)+[](cdims_t) { static CString16Executor e{}; return &e;};
1089
gf["char32_t*"] = (ef_t)+[](cdims_t) { static CString32Executor e{}; return &e;};
1090
gf["std::string"] = (ef_t)+[](cdims_t) { static STLStringExecutor e{}; return &e; };
1091
+ gf["string"] = gf["std::string"];
1092
gf["std::string&"] = (ef_t)+[](cdims_t) { return new STLStringRefExecutor{}; };
1093
+ gf["string&"] = gf["std::string&"];
1094
gf["std::wstring"] = (ef_t)+[](cdims_t) { static STLWStringExecutor e{}; return &e; };
1095
gf[WSTRING1] = gf["std::wstring"];
1096
gf[WSTRING2] = gf["std::wstring"];
0 commit comments