]> git.lyx.org Git - features.git/blobdiff - src/support/LAssert.h
apply the ostream changes to mathed, some other small related things
[features.git] / src / support / LAssert.h
index 071f50919d85234c9d465f88a3b74de6e4fc0b75..f4d92782388bd6f654664eb887fe2827a470bbfc 100644 (file)
@@ -8,7 +8,9 @@
 
 #ifdef ENABLE_ASSERTIONS
 
-template<class A> inline void Assert(A assertion)
+template<class A>
+inline
+void Assert(A assertion)
 {
        if (!assertion) {
                lyx::abort();
@@ -17,7 +19,9 @@ template<class A> inline void Assert(A assertion)
 
 #else
 
-template<class A> inline void Assert(A /*assertion*/) {}
+template<class A>
+inline
+void Assert(A /*assertion*/) {}
 
 #endif /* ENABLE_ASSERTIONS */