* commit '29eed9cc3aaee9236ec3c6397b41d5421e9b0c91': Clean up warnings in libstdc++.
This commit is contained in:
		@@ -9,6 +9,7 @@ ifeq ($(TARGET_CPU_SMP),true)
 | 
			
		||||
else
 | 
			
		||||
    libstdc++_cflags += -DANDROID_SMP=0
 | 
			
		||||
endif
 | 
			
		||||
libstdc++_cflags += -Wall -Wextra -Werror
 | 
			
		||||
 | 
			
		||||
include $(CLEAR_VARS)
 | 
			
		||||
 | 
			
		||||
 
 | 
			
		||||
@@ -7,26 +7,21 @@ type_info::type_info() {
 | 
			
		||||
type_info::~type_info() {
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
char const *
 | 
			
		||||
type_info::name() const {
 | 
			
		||||
    return "N/A";
 | 
			
		||||
char const* type_info::name() const {
 | 
			
		||||
  return "N/A";
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
bool 
 | 
			
		||||
type_info::operator==(type_info const & right) const {
 | 
			
		||||
    return false;
 | 
			
		||||
bool type_info::operator==(type_info const& /*rhs*/) const {
 | 
			
		||||
  return false;
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
bool 
 | 
			
		||||
type_info::operator!=(type_info const & right) const {
 | 
			
		||||
    return false;
 | 
			
		||||
bool type_info::operator!=(type_info const& /*rhs*/) const {
 | 
			
		||||
  return false;
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
bool
 | 
			
		||||
type_info::before(type_info const & right) const {
 | 
			
		||||
    return false;
 | 
			
		||||
bool type_info::before(type_info const& /*rhs*/) const {
 | 
			
		||||
  return false;
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
type_info::type_info(type_info const & right) {
 | 
			
		||||
type_info::type_info(type_info const& /*rhs*/) {
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user