]> git.lyx.org Git - lyx.git/blobdiff - src/IndicesList.cpp
Account for old versions of Pygments
[lyx.git] / src / IndicesList.cpp
index 9f22373f3ab906f55af1b731fc27842bad8d8b13..26881549a179edd908ebcece02b22347362fb084 100644 (file)
@@ -30,7 +30,9 @@ namespace {
 class IndexNamesEqual : public std::unary_function<Index, bool>
 {
 public:
-       IndexNamesEqual(docstring const & name) : name_(name) {}
+       IndexNamesEqual(docstring const & name)
+               : name_(name)
+       {}
 
        bool operator()(Index const & index) const
        {
@@ -44,7 +46,9 @@ private:
 class IndexHasShortcut : public std::unary_function<Index, bool>
 {
 public:
-       IndexHasShortcut(docstring const & shortcut) : shortc_(shortcut) {}
+       IndexHasShortcut(docstring const & shortcut)
+               : shortc_(shortcut)
+       {}
 
        bool operator()(Index const & index) const
        {