]> git.lyx.org Git - lyx.git/blobdiff - src/BackStack.h
more changes, read the Changelog
[lyx.git] / src / BackStack.h
index 255b84f842ba13d636a04191ef51eb03f65d4278..152ca7355a16fe4d4c47c2c90166eb06700dd76f 100644 (file)
@@ -12,7 +12,6 @@
 #define BACK_STACK_H
 
 #include <stack>
-using std::stack;
 
 #include "LString.h"
 
@@ -54,7 +53,7 @@ public:
        }
 private:
        ///
-       stack<BackStackItem> stakk;
+       std::stack<BackStackItem> stakk;
 };
 
 #endif