aboutsummaryrefslogtreecommitdiff
path: root/src/main.cc
diff options
context:
space:
mode:
authorMathias Gumz <akira@fluxbox.org>2016-09-11 09:21:00 (GMT)
committerMathias Gumz <akira@fluxbox.org>2016-09-11 09:21:00 (GMT)
commit52c9f6257d86e2882434497acf3d8243394fdb8f (patch)
treeb1055875fa29fb9e88f09a2362267539d003c173 /src/main.cc
parent5fc00dee32de8d31b7220c338810e86043eb87ae (diff)
downloadfluxbox-52c9f6257d86e2882434497acf3d8243394fdb8f.zip
fluxbox-52c9f6257d86e2882434497acf3d8243394fdb8f.tar.bz2
std::auto_ptr to std::unique_ptr
Diffstat (limited to 'src/main.cc')
-rw-r--r--src/main.cc3
1 files changed, 1 insertions, 2 deletions
diff --git a/src/main.cc b/src/main.cc
index 3cc728d..574020a 100644
--- a/src/main.cc
+++ b/src/main.cc
@@ -59,7 +59,6 @@ using std::string;
59using std::ostream; 59using std::ostream;
60using std::ofstream; 60using std::ofstream;
61using std::streambuf; 61using std::streambuf;
62using std::auto_ptr;
63using std::out_of_range; 62using std::out_of_range;
64using std::runtime_error; 63using std::runtime_error;
65using std::bad_cast; 64using std::bad_cast;
@@ -68,7 +67,7 @@ using std::exception;
68 67
69namespace { 68namespace {
70 69
71auto_ptr<Fluxbox> fluxbox; 70std::unique_ptr<Fluxbox> fluxbox;
72 71
73void handleSignal(int signum) { 72void handleSignal(int signum) {
74 73