summaryrefslogtreecommitdiff
path: root/examples
diff options
context:
space:
mode:
authorDaniel Dunbar <daniel@zuster.org>2010-06-15 17:47:24 +0000
committerDaniel Dunbar <daniel@zuster.org>2010-06-15 17:47:24 +0000
commitf19f6a9debfeb0248aa3cf159700d1766bb33988 (patch)
tree683240e6415f984bcaf0baa68f617774133017d4 /examples
parent4ffd22d8103aa374dc9573012993139948165577 (diff)
downloadllvm-f19f6a9debfeb0248aa3cf159700d1766bb33988.tar.gz
llvm-f19f6a9debfeb0248aa3cf159700d1766bb33988.tar.bz2
llvm-f19f6a9debfeb0248aa3cf159700d1766bb33988.tar.xz
Remove stray semi-colon.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@106009 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'examples')
-rw-r--r--examples/ExceptionDemo/ExceptionDemo.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/ExceptionDemo/ExceptionDemo.cpp b/examples/ExceptionDemo/ExceptionDemo.cpp
index bbca963707..e09c990f8a 100644
--- a/examples/ExceptionDemo/ExceptionDemo.cpp
+++ b/examples/ExceptionDemo/ExceptionDemo.cpp
@@ -1574,7 +1574,7 @@ public:
));
}
- ~OurCppRunException (void) throw () {};
+ ~OurCppRunException (void) throw () {}
};