aboutsummaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
authorDave Reisner <dreisner@archlinux.org>2016-06-07 12:37:43 -0400
committerDave Reisner <dreisner@archlinux.org>2016-07-17 14:52:39 -0400
commit6bb1f0df2b9c7582a686f09681b91d185e2eb4f2 (patch)
tree9f3d7f3bde902070ef0c34200a1fa17deb2698f9 /Makefile
parent66bec49862142f36eda4227a0b0e586a1b04c3c3 (diff)
downloadmirror-ponymix-6bb1f0df2b9c7582a686f09681b91d185e2eb4f2.tar.gz
mirror-ponymix-6bb1f0df2b9c7582a686f09681b91d185e2eb4f2.tar.bz2
mirror-ponymix-6bb1f0df2b9c7582a686f09681b91d185e2eb4f2.zip
more c++11/c++14 features
- use std::move instead of std::swap - use assignment instead of memcpy - wrap operations in WaitOperationComplete (eh, not really c++11) - prefer unique_ptr assignment instead of reset
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 31fa559..bfb554f 100644
--- a/Makefile
+++ b/Makefile
@@ -5,7 +5,7 @@ ifneq "$(VDEVEL)" ""
V=$(VDEVEL)
endif
-base_CXXFLAGS = -std=c++11 -Wall -Wextra -pedantic -O2 -g -DPONYMIX_VERSION=\"$(V)\"
+base_CXXFLAGS = -std=c++14 -Wall -Wextra -pedantic -O2 -g -DPONYMIX_VERSION=\"$(V)\"
base_LIBS = -lm
libpulse_CXXFLAGS = $(shell pkg-config --cflags libpulse)