projects
/
platform
/
upstream
/
llvm.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
628df38
)
Hopefully fix windows build due to non-standard pair implementation.
author
Daniel Jasper
<djasper@google.com>
Fri, 1 Feb 2013 11:28:16 +0000
(11:28 +0000)
committer
Daniel Jasper
<djasper@google.com>
Fri, 1 Feb 2013 11:28:16 +0000
(11:28 +0000)
llvm-svn: 174169
clang/lib/Format/Format.cpp
patch
|
blob
|
history
diff --git
a/clang/lib/Format/Format.cpp
b/clang/lib/Format/Format.cpp
index
0326499
..
d638221
100644
(file)
--- a/
clang/lib/Format/Format.cpp
+++ b/
clang/lib/Format/Format.cpp
@@
-595,7
+595,7
@@
private:
// Insert start element into queue.
std::multimap<unsigned, QueueItem> Queue;
Queue.insert(std::pair<unsigned, QueueItem>(
- 0, QueueItem(InitialState, Edge(false,
NULL
))));
+ 0, QueueItem(InitialState, Edge(false,
(const LineState *) 0
))));
std::map<LineState, Edge> Seen;
// While not empty, take first element and follow edges.