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