]> git.lyx.org Git - lyx.git/blobdiff - src/ServerSocket.h
Do not error out if -geometry is used with QPA_XCB defined.
[lyx.git] / src / ServerSocket.h
index 7364250e17b7174dfb791490706d2f48c7cfaaac..c66658042ff38ca4d4da9dfda9d67cb9489567c0 100644 (file)
 
 #include "support/FileName.h"
 
-#include "support/shared_ptr.h"
-
 #include <string>
 #include <map>
+#include <memory>
 
 
 namespace lyx {
@@ -60,7 +59,7 @@ private:
                MAX_CLIENTS = 10
        };
        /// All connections
-       std::map<int, shared_ptr<LyXDataSocket> > clients;
+       std::map<int, std::shared_ptr<LyXDataSocket>> clients;
 };