]> git.lyx.org Git - lyx.git/blobdiff - src/chset.h
reformatting and remove using delc
[lyx.git] / src / chset.h
index adce167ab17c80b576e6a531bc69d6211d2d46ef..90d9affad48156848b3a92da9195fa17f87d0373 100644 (file)
@@ -9,9 +9,6 @@
 #include <map>
 #include <utility>
 
-using std::map;
-using std::pair;
-
 #include "LString.h"
 
 ///
@@ -22,12 +19,12 @@ public:
        ///
        string const & getName() const;
        ///
-       pair<bool, int> encodeString(string &) const;
+       std::pair<bool, int> const encodeString(string const &) const;
 private:
        ///
        string name_;
        ///
-       typedef map<string, unsigned char> Cdef;
+       typedef std::map<string, unsigned char> Cdef;
        ///
        Cdef map_;
 };