diff options
author | Ted Kremenek <kremenek@apple.com> | 2009-03-27 14:59:04 +0000 |
---|---|---|
committer | Ted Kremenek <kremenek@apple.com> | 2009-03-27 14:59:04 +0000 |
commit | 33e6f91ec33688f5ab004d15940749d817b4b5a7 (patch) | |
tree | bbbbfa9008af24a7c3a6d2465a3b3e1fcb7fb58d | |
parent | 3241b74f69e845fec49bf77632865c66df4f6486 (diff) | |
download | bcm5719-llvm-33e6f91ec33688f5ab004d15940749d817b4b5a7.tar.gz bcm5719-llvm-33e6f91ec33688f5ab004d15940749d817b4b5a7.zip |
PathDiagnostic: replace 'std::list' with 'std::deque'
llvm-svn: 67840
-rw-r--r-- | clang/include/clang/Analysis/PathDiagnostic.h | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/clang/include/clang/Analysis/PathDiagnostic.h b/clang/include/clang/Analysis/PathDiagnostic.h index 665bf033935..9d71093fc83 100644 --- a/clang/include/clang/Analysis/PathDiagnostic.h +++ b/clang/include/clang/Analysis/PathDiagnostic.h @@ -19,7 +19,7 @@ #include "llvm/ADT/OwningPtr.h" #include <vector> -#include <list> +#include <deque> #include <string> #include <algorithm> @@ -42,7 +42,7 @@ public: virtual void HandlePathDiagnostic(const PathDiagnostic* D) = 0; - virtual bool supportsLogicalOpControlFlow() const { return false; } + virtual bool supportsLogicalOpControlFlow() const { return false; } }; //===----------------------------------------------------------------------===// @@ -85,12 +85,12 @@ public: }; class PathDiagnostic { - std::list<PathDiagnosticPiece*> path; + std::deque<PathDiagnosticPiece*> path; unsigned Size; std::string BugType; std::string Desc; std::string Category; - std::list<std::string> OtherDesc; + std::deque<std::string> OtherDesc; public: PathDiagnostic(); @@ -106,7 +106,7 @@ public: const std::string& getBugType() const { return BugType; } const std::string& getCategory() const { return Category; } - typedef std::list<std::string>::const_iterator meta_iterator; + typedef std::deque<std::string>::const_iterator meta_iterator; meta_iterator meta_begin() const { return OtherDesc.begin(); } meta_iterator meta_end() const { return OtherDesc.end(); } void addMeta(const std::string& s) { OtherDesc.push_back(s); } @@ -137,7 +137,7 @@ public: class iterator { public: - typedef std::list<PathDiagnosticPiece*>::iterator ImplTy; + typedef std::deque<PathDiagnosticPiece*>::iterator ImplTy; typedef PathDiagnosticPiece value_type; typedef value_type& reference; @@ -163,7 +163,7 @@ public: class const_iterator { public: - typedef std::list<PathDiagnosticPiece*>::const_iterator ImplTy; + typedef std::deque<PathDiagnosticPiece*>::const_iterator ImplTy; typedef const PathDiagnosticPiece value_type; typedef value_type& reference; |