[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:
Devin Coughlin 2016-06-07 04:44:52 +00:00
parent d15c106c9b
commit 2737d99191
1 changed files with 1 additions and 1 deletions

View File

@ -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));