forked from OSchip/llvm-project
[analyzer] Speculative fix for r271907.
Fix a compilation error on the bots involving brace initialization. Differential Revision: http://reviews.llvm.org/D12761 llvm-svn: 271981
This commit is contained in:
parent
d15c106c9b
commit
2737d99191
|
@ -28,7 +28,7 @@ class MPIBugReporter {
|
|||
public:
|
||||
MPIBugReporter(BugReporter &BR, const CheckerBase &CB,
|
||||
const MPIFunctionClassifier &FC)
|
||||
: BReporter{BR} {
|
||||
: BReporter(BR) {
|
||||
UnmatchedWaitBugType.reset(new BugType(&CB, "Unmatched wait", MPIError));
|
||||
DoubleNonblockingBugType.reset(
|
||||
new BugType(&CB, "Double nonblocking", MPIError));
|
||||
|
|
Loading…
Reference in New Issue