Browse Source

okay, if I change the value_type from 'char*' to 'const char*' I got other troubles there... *sigh*

master
roker 4 years ago
parent
commit
cbbd03ae01
  1. 2
      src/stringlist.cc

2
src/stringlist.cc

@ -14,7 +14,7 @@ namespace pEp
}
template<>
char* stringlist_t::* const ListWrapper<stringlist_t*, char*>::Value = &stringlist_t::value;
const char* stringlist_t::* const ListWrapper<stringlist_t*, const char*>::Value = &stringlist_t::value;
template<>
int StringList::size() const

Loading…
Cancel
Save