]> git.lyx.org Git - lyx.git/blobdiff - src/support/limited_stack.h
Remove non-copyable idioms
[lyx.git] / src / support / limited_stack.h
index 21a5059c5087ed36fa90f8fb9bd4b23d324b2828..b17eeae19dbca92efecaedff761a8f40d73d8744 100644 (file)
@@ -6,7 +6,7 @@
  *
  * \author John Levon
  *
- * Full author contact details are available in file CREDITS
+ * Full author contact details are available in file CREDITS.
  */
 
 #ifndef LIMITED_STACK_H
@@ -14,6 +14,9 @@
 
 #include <deque>
 
+
+namespace lyx {
+
 /**
  * limited_stack - A stack of limited size.
  *
@@ -91,4 +94,7 @@ private:
 template <typename T>
 class limited_stack<T*>;
 
+
+} // namespace lyx
+
 #endif // LIMITED_STACK_H