Given the following source code:
#include <memory>
#include <typeinfo>
struct Base {
virtual ~Base();
};
struct Derived : Base { };
int main() {
std::unique_ptr<Base> ptr_foo = std::make_unique<Derived>();
typeid(*ptr_foo).name();
return 0;
}
and compiled it with:
clang++ -std=c++14 -Wall -Wextra -Werror -Wpedantic -g -o test test.cpp
Enviroment setup:
linux x86_64
clang version 5.0.0
It does not compile because of warning (note -Werror
):
error: expression with side effects will be evaluated
despite being used as an operand to 'typeid'
[-Werror,-Wpotentially-evaluated-expression]
typeid(*ptr_foo).name();
(Just a note: GCC does not claim that kind of potential problematic)
Question
Is there a way to get the information about the type pointed by a unique_ptr
without generating that kind of warning?
Note: I am not talking about disabling -Wpotentially-evaluated-expression
or avoiding -Werror
.
typeid
call to actually have any side effects. – Paleogeographytypeid
is the only one that behaves that way.decltype
andsizeof
don't evaluate anything. – Paleogeographytypeid
works with polymorphic classes, I can't see how it could possibly work without evaluating its argument. – Chalky