commit | a6904ff7f9e8e779d50c0c816950cd7f68846029 | [log] [tgz] |
---|---|---|
author | Ted Kremenek <kremenek@apple.com> | Mon Jul 13 23:53:06 2009 +0000 |
committer | Ted Kremenek <kremenek@apple.com> | Mon Jul 13 23:53:06 2009 +0000 |
tree | 74998d139ba2edbac5472c30a5cec8c60f6898f0 | |
parent | 3e42e9f2fcf12603aec8aecb68c9c54033fa53d0 [diff] [blame] |
Tidy pretty-printing for SVals, using 'dump()' instead of 'printStdErr()', and implementing operator<< support for llvm::raw_ostream. llvm-svn: 75560
diff --git a/clang/lib/Analysis/BasicStore.cpp b/clang/lib/Analysis/BasicStore.cpp index ba1ccf1..f1f051f 100644 --- a/clang/lib/Analysis/BasicStore.cpp +++ b/clang/lib/Analysis/BasicStore.cpp
@@ -611,8 +611,7 @@ else Out << nl; - Out << ' ' << I.getKey() << " : "; - I.getData().print(Out); + Out << ' ' << I.getKey() << " : " << I.getData(); } }