From cbbd03ae01bbb6684a459d1df4a348adee69fa28 Mon Sep 17 00:00:00 2001 From: roker Date: Fri, 18 Jun 2021 10:42:55 +0200 Subject: [PATCH] okay, if I change the value_type from 'char*' to 'const char*' I got other troubles there... *sigh* --- src/stringlist.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/stringlist.cc b/src/stringlist.cc index 360abaa..0f2ff01 100644 --- a/src/stringlist.cc +++ b/src/stringlist.cc @@ -14,7 +14,7 @@ namespace pEp } template<> - char* stringlist_t::* const ListWrapper::Value = &stringlist_t::value; + const char* stringlist_t::* const ListWrapper::Value = &stringlist_t::value; template<> int StringList::size() const