Programming/android
format_output.h:94:22: error: reference ‘counts’ cannot be declared ‘mutable’ [-fpermissive]
bluelimn
2013. 12. 19. 18:00
728x90
In file included from external/oprofile/libpp/arrange_profiles.cpp:24:0:
external/oprofile/libpp/format_output.h:94:22: error: reference ‘counts’ cannot be declared ‘mutable’ [-fpermissive]
make: *** [out/host/linux-x86/obj/STATIC_LIBRARIES/liboprofile_pp_intermediates/arrange_profiles.o] Error 1
SOLUTION
external/oprofile/libpp/format_output.h
Fix/Work-around:
- mutable counts_t & counts;
+ counts_t & counts;
728x90