shadowm

Untitled

Oct 7th, 2012
147
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.88 KB | None | 0 0
  1. ccache clang \
  2. -O2 -g -fno-inline-functions -fthreadsafe-statics -Wnon-virtual-dtor -Werror -Wignored-qualifiers -Wformat -Wswitch -O3 -g0 -march=native -DNO_UPLOAD_STATS -Qunused-arguments -Wno-logical-op-parentheses -pipe -D_GNU_SOURCE=1 -D_REENTRANT -I/usr/include/SDL -I/usr/include/libdrm -I/usr/include/GL -I/usr/include/libpng12 -DIMPLEMENT_SAVE_PNG \
  3. -c src/custom_object_dialog.cpp
  4. In file included from src/custom_object.cpp:1:
  5. src/custom_object.cpp:4442:15: error: comparison of unsigned expression < 0 is always false [-Werror,-Wtautological-compare]
  6. if((segment) < (0)) { std::ostringstream s; s << "src/custom_object.cpp" << ":" << 4442 << " ASSERT GE FAILED: " << "segment" << " < " << "0" << ": " << (segment) << " < " << (0) << "\n"; if(throw_validation_failure_on_assert()) { throw validation_failure_exception(s.str()); } else { std::cerr << s.str(); output_backtrace(); report_assert_msg(s.str()); abort(); } };
  7. ~~~~~~~~~ ^ ~~~
  8. src/custom_object.cpp:4465:15: error: comparison of unsigned expression < 0 is always false [-Werror,-Wtautological-compare]
  9. if((segment) < (0)) { std::ostringstream s; s << "src/custom_object.cpp" << ":" << 4465 << " ASSERT GE FAILED: " << "segment" << " < " << "0" << ": " << (segment) << " < " << (0) << "\n"; if(throw_validation_failure_on_assert()) { throw validation_failure_exception(s.str()); } else { std::cerr << s.str(); output_backtrace(); report_assert_msg(s.str()); abort(); } };
  10. ~~~~~~~~~ ^ ~~~
  11. 2 errors generated.
  12. make: *** [custom_object.o] Error 1
  13. make: *** Waiting for unfinished jobs....
  14. In file included from src/custom_object_dialog.cpp:1:
  15. src/custom_object_dialog.cpp:549:11: error: comparison of unsigned expression < 0 is always false [-Werror,-Wtautological-compare]
  16. if(index < 0 || index >= choices.size()) {
  17. ~~~~~ ^ ~
  18. 1 error generated.
  19. make: *** [custom_object_dialog.o] Error 1
Advertisement
Add Comment
Please, Sign In to add comment