Advertisement
Guest User

Untitled

a guest
Jul 16th, 2019
110
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.88 KB | None | 0 0
  1. ../../../../../secretprojectname/src/util/jsonutil.cpp:135:13: error: no matching member function for call to 'push_back'
  2. arr.push_back(val);
  3. ~~~~^~~~~~~~~
  4. ../../../../../secretprojectname/include/tao/json/binding/internal/../../basic_value.hpp:892:12: note: candidate function not viable: no known conversion from 'const std::__1::__bit_const_reference<std::__1::vector<bool, std::__1::allocator<bool> > >' to 'const tao::json::basic_value<traits>' for 1st argument
  5. void push_back( const basic_value& v )
  6. ^
  7. ../../../../../secretprojectname/include/tao/json/binding/internal/../../basic_value.hpp:898:12: note: candidate function n../../../../../secretprojectname/src/util/jsonutil.cpp:135:26: error: no viable conversion from 'const std::__1::__bit_const_reference<std::__1::vector<bool, std::__1::allocator<bool> > >' to 'tao::json::value' (aka 'basic_value<traits>')
  8. tao::json::value jsonValue = val;
  9. ^ ~~~
  10. ../../../../../secretprojectname/include/tao/json/binding/internal/../../basic_value.hpp:51:7: note: candidate constructor not viable: no known conversion from 'const std::__1::__bit_const_reference<std::__1::vector<bool, std::__1::allocator<bool> > >' to 'const tao::json::basic_value<traits> &' for 1st argument
  11. basic_value( const basic_value& r )
  12. ^
  13. ../../../../../secretprojectname/include/tao/json/binding/internal/../../basic_value.hpp:59:7: note: candidate constructor not viable: no known conversion from 'const std::__1::__bit_const_reference<std::__1::vector<bool, std::__1::allocator<bool> > >' to 'tao::json::basic_value<traits> &&' for 1st argument
  14. basic_value( basic_value&& r ) noexcept
  15. ^
  16. ../../../../../secretprojectname/include/tao/json/binding/internal/../../basic_value.hpp:123:7: note: candidate constructor not viable: no known conversion from 'const std::__1::__bit_const_reference<std::__1::vector<bool, std::__1::allocator<bool> > >' to 'std::initializer_list<internal::pair<traits> > &&' for 1st argument
  17. basic_value( std::initializer_list< internal::pair< Traits > >&& l, public_base_t b = public_base_t() )
  18. ^
  19. ../../../../../secretprojectname/include/tao/json/binding/internal/../../basic_value.hpp:138:7: note: candidate constructor not viable: no known conversion from 'const std::__1::__bit_const_reference<std::__1::vector<bool, std::__1::allocator<bool> > >' to 'const std::initializer_list<internal::pair<traits> > &' for 1st argument
  20. basic_value( const std::initializer_list< internal::pair< Traits > >& l, public_base_t b = public_base_t() )
  21. ^
  22. ../../../../../secretprojectname/include/tao/json/binding/internal/../../basic_value.hpp:153:7: note: candidate constructor not viable: no known conversion from 'const std::__1::__bit_const_reference<std::__1::vector<bool, std::__1::allocator<bool> > >' to 'std::initializer_list<internal::pair<traits> > &' for 1st argument
  23. basic_value( std::initializer_list< internal::pair< Traits > >& l, public_base_t b = public_base_t() )
  24. ^
  25. ../../../../../secretprojectname/include/tao/json/binding/internal/../../basic_value.hpp:74:7: note: candidate template ignored: substitution failure [with T = const std::__1::__bit_const_reference<std::__1::vector<bool, std::__1::allocator<bool> > > &, $1 = void]: no member named 'assign' in 'tao::json::traits<std::__1::__bit_const_reference<std::__1::vector<bool, std::__1::allocator<bool> > >, void>'
  26. basic_value( T&& v, public_base_t b = public_base_t() ) // NOLINT
  27. ^
  28. /osxcross/target/bin/../SDK/MacOSX10.14.sdk/usr/include/c++/__bit_reference:139:49: note: candidate function
  29. _LIBCPP_INLINE_VISIBILITY _LIBCPP_CONSTEXPR operator bool() const _NOEXCEPTot viable: no known conversion from 'const std::__1::__bit_const_reference<std::__1::vector<bool, std::__1::allocator<bool> > >' to 'tao::json::basic_value<traits>' for 1st argument
  30. void push_back( basic_value&& v )
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement