diff options
Diffstat (limited to 'perl_dmod/Cstore/Cstore.xs')
-rw-r--r-- | perl_dmod/Cstore/Cstore.xs | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/perl_dmod/Cstore/Cstore.xs b/perl_dmod/Cstore/Cstore.xs index e5fd126..3c9a9ad 100644 --- a/perl_dmod/Cstore/Cstore.xs +++ b/perl_dmod/Cstore/Cstore.xs @@ -206,7 +206,7 @@ Cstore::cfgPathGetChildNodesStatus(CPATH *pref) PREINIT: Cpath arg_cpath; CODE: - Cstore::MapT<string, string> ret_strstrmap; + MapT<string, string> ret_strstrmap; THIS->cfgPathGetChildNodesStatus(arg_cpath, ret_strstrmap); OUTPUT: RETVAL @@ -264,7 +264,7 @@ Cstore::cfgPathGetChildNodesStatusDA(CPATH *pref) PREINIT: Cpath arg_cpath; CODE: - Cstore::MapT<string, string> ret_strstrmap; + MapT<string, string> ret_strstrmap; THIS->cfgPathGetChildNodesStatusDA(arg_cpath, ret_strstrmap); OUTPUT: RETVAL @@ -296,7 +296,7 @@ Cstore::getParsedTmpl(CPATH *pref, bool allow_val) PREINIT: Cpath arg_cpath; CODE: - Cstore::MapT<string, string> ret_strstrmap; + MapT<string, string> ret_strstrmap; if (!THIS->getParsedTmpl(arg_cpath, ret_strstrmap, allow_val)) { XSRETURN_UNDEF; } |