RE: Abit Witness Log 2016-10-22 ~ 2016-10-28

You are viewing a single comment's thread from:

Abit Witness Log 2016-10-22 ~ 2016-10-28

in witness-category •  8 years ago 

Thanks for the reply.
It is too difficult to debug these errors for me, especially when I am not a c++ coder.
I did manage to get rid of "fc::raw::unpack" error by removing the ... from flat_fwd.hpp's line 19 and 20, to make the template parameters explicit, I am not sure if it is a correct change though. Still trying to figure out the other error.

change from:

      template<typename Stream, typename K, typename... V>
      void unpack( Stream& s, flat_map<K,V...>& value ) ;

to:

      template<typename Stream, typename K, typename V> 
      void unpack( Stream& s, flat_map<K,V>& value ) ;
Authors get paid when people like you upvote their post.
If you enjoyed what you read here, create your account today and start earning FREE STEEM!
Sort Order:  

Thanks for the info. After this change, it would be unable to specify more than 2 parameters on flat_map: the comparison function, allocator and etc. If changed code compiles, it means we're not using such feature in the code right now, but I'm not sure whether we'll have this kind of code in the future.

That mean the changed is not correct.
I guess steemd can not be compiled with vs2013 from v0.14.3rc1 onward. :(
Thanks for your help.