diff options
author | Alexis Ballier <aballier@gentoo.org> | 2020-05-18 12:17:48 +0200 |
---|---|---|
committer | Alexis Ballier <aballier@gentoo.org> | 2020-05-18 13:22:28 +0200 |
commit | b38f21c160adccf5d56ff6b707ccd63ee94930bb (patch) | |
tree | e98ed084d7ffa60236751204a266130ca8f76939 /eclass | |
parent | ros-meta/perception_pcl: Bump to 1.7.1. (diff) | |
download | gentoo-b38f21c160adccf5d56ff6b707ccd63ee94930bb.tar.gz gentoo-b38f21c160adccf5d56ff6b707ccd63ee94930bb.tar.bz2 gentoo-b38f21c160adccf5d56ff6b707ccd63ee94930bb.zip |
eclass/ros-catkin.eclass: Bump C++ standard to C++14
Signed-off-by: Alexis Ballier <aballier@gentoo.org>
Diffstat (limited to 'eclass')
-rw-r--r-- | eclass/ros-catkin.eclass | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/eclass/ros-catkin.eclass b/eclass/ros-catkin.eclass index ee5def361146..52fdc1df0dd3 100644 --- a/eclass/ros-catkin.eclass +++ b/eclass/ros-catkin.eclass @@ -158,7 +158,7 @@ ros-catkin_src_prepare() { # Most packages require C++11 these days. Do it here, in src_prepare so that # ebuilds can override it in src_configure. - append-cxxflags '-std=c++11' + append-cxxflags '-std=c++14' } # @FUNCTION: ros-catkin_python_setup |