repo.or.cz
/
llvm-project.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
[clang-cl] Ignore /Wv and /Wv:17 flags
[llvm-project.git]
/
clang
/
test
/
Analysis
/
virtualcall.h
blob
f591aab2cacfcc5bd6c124a49dc490fbba28ab2e
1
namespace
header
{
2
class
Z
{
3
public
:
4
Z
() {
5
foo
();
// impure-warning {{Call to virtual method 'Z::foo' during construction bypasses virtual dispatch}}
6
}
7
virtual
int
foo
();
8
};
9
}