]> git.lyx.org Git - lyx.git/blobdiff - src/support/foreach.h
Do not use of boost::tokenizer
[lyx.git] / src / support / foreach.h
index 7689bdac7a13c16062261236c2135757baf746be..a1b5b9e064eda435ef04382870f08491dd543b0b 100644 (file)
@@ -1,4 +1,3 @@
-
 /**
  * \file foreach.h
  * This file is part of LyX, the document processor.
@@ -52,7 +51,7 @@ struct ForeachContainerBase {};
 template <typename T>
 class ForeachContainer : public ForeachContainerBase {
 public:
-    inline ForeachContainer(const T& t): c(t), brk(0), i(c.begin()), e(c.end()){};
+    inline ForeachContainer(const T& t): c(t), brk(0), i(c.begin()), e(c.end()){}
     const T & c;
     mutable int brk;
     mutable typename T::const_iterator i, e;