diff options
| author | Dan Gohman <gohman@apple.com> | 2009-07-25 16:00:54 +0000 |
|---|---|---|
| committer | Dan Gohman <gohman@apple.com> | 2009-07-25 16:00:54 +0000 |
| commit | b7e6a3f527aff5871b2ee0803ea71d3f58a05f84 (patch) | |
| tree | 685018d2b7701c6a6328f65052da58f65b69e7c8 | |
| parent | 9f831dbbcdfab18525eda82047a856f195262ab1 (diff) | |
| download | bcm5719-llvm-b7e6a3f527aff5871b2ee0803ea71d3f58a05f84.tar.gz bcm5719-llvm-b7e6a3f527aff5871b2ee0803ea71d3f58a05f84.zip | |
Remove spurious semicolons.
llvm-svn: 77077
| -rw-r--r-- | llvm/include/llvm/Support/raw_ostream.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/llvm/include/llvm/Support/raw_ostream.h b/llvm/include/llvm/Support/raw_ostream.h index 74a4206c235..3527984d2a6 100644 --- a/llvm/include/llvm/Support/raw_ostream.h +++ b/llvm/include/llvm/Support/raw_ostream.h @@ -78,7 +78,7 @@ public: /// whether an output error has been encountered. bool has_error() const { return Error; - }; + } /// clear_error - Set the flag read by has_error() to false. If the error /// flag is set at the time when this raw_ostream's destructor is called, @@ -86,7 +86,7 @@ public: /// after handling the error to avoid this behavior. void clear_error() { Error = false; - }; + } //===--------------------------------------------------------------------===// // Configuration Interface |

