Make this test pass if llvm-g++ was built without exception handling support.
[oota-llvm.git] / test / C++Frontend / 2003-10-27-VirtualBaseClassCrash.cpp
index 19cb0ccbcc6ea3362251bb4f8c86a18f568c416c..f9fc80ee9407ba463a761645d9ad95905cffb5f0 100644 (file)
@@ -7,7 +7,7 @@ struct super {
   void foo();
 };
 
-template <class T> 
+template <class T>
 struct test : virtual super<int> {};
 
 extern test<int> X;