]> git.lyx.org Git - lyx.git/blobdiff - src/LaTeX.h
try this for distinguishing inner and outer tabs
[lyx.git] / src / LaTeX.h
index dfa5937ddb5ccfb6a79c776b7951b4014ead5be4..0fa5d78206d8a222a544a76bdb2a103e8feacf24 100644 (file)
@@ -74,9 +74,6 @@ public:
        std::set<string> databases;
        ///
        std::set<string> styles;
-       ///
-       friend
-       bool operator==(Aux_Info const & a, Aux_Info const & o);
 };
 
 
@@ -91,6 +88,14 @@ bool operator==(Aux_Info const & a, Aux_Info const & o)
 }
 
 
+///
+inline
+bool operator!=(Aux_Info const & a, Aux_Info const & o)
+{
+       return !(a == o);
+}
+
+
 ///
 class LaTeX : public noncopyable {
 public:
@@ -182,7 +187,7 @@ protected:
                                      std::vector<Aux_Info> const &);
 
        ///
-       bool runBibTeX(vector<Aux_Info> const &);
+       bool runBibTeX(std::vector<Aux_Info> const &);
 
        ///
        void deleteFilesOnError() const;