1
0
Fork 0
mirror of https://github.com/bolero-MURAKAMI/Sprout synced 2025-08-03 12:49:50 +00:00

update copyright, fix string_view conversion

This commit is contained in:
bolero-MURAKAMI 2018-12-30 17:25:21 +09:00
parent 5b8aa7d71e
commit 26299dad18
2852 changed files with 2888 additions and 2864 deletions

View file

@ -1,5 +1,5 @@
/*=============================================================================
Copyright (c) 2011-2017 Bolero MURAKAMI
Copyright (c) 2011-2018 Bolero MURAKAMI
https://github.com/bolero-MURAKAMI/Sprout
Distributed under the Boost Software License, Version 1.0. (See accompanying

View file

@ -1,5 +1,5 @@
/*=============================================================================
Copyright (c) 2011-2017 Bolero MURAKAMI
Copyright (c) 2011-2018 Bolero MURAKAMI
https://github.com/bolero-MURAKAMI/Sprout
Distributed under the Boost Software License, Version 1.0. (See accompanying

View file

@ -1,5 +1,5 @@
/*=============================================================================
Copyright (c) 2011-2017 Bolero MURAKAMI
Copyright (c) 2011-2018 Bolero MURAKAMI
https://github.com/bolero-MURAKAMI/Sprout
Distributed under the Boost Software License, Version 1.0. (See accompanying

View file

@ -1,6 +1,6 @@
#!/usr/bin/env python
# =============================================================================
# Copyright (c) 2011-2017 Bolero MURAKAMI
# Copyright (c) 2011-2018 Bolero MURAKAMI
# https://github.com/bolero-MURAKAMI/Sprout
#
# Distributed under the Boost Software License, Version 1.0. (See accompanying

View file

@ -1,6 +1,6 @@
#!/bin/bash
# =============================================================================
# Copyright (c) 2011-2017 Bolero MURAKAMI
# Copyright (c) 2011-2018 Bolero MURAKAMI
# https://github.com/bolero-MURAKAMI/Sprout
#
# Distributed under the Boost Software License, Version 1.0. (See accompanying

View file

@ -1,5 +1,5 @@
/*=============================================================================
Copyright (c) 2011-2017 Bolero MURAKAMI
Copyright (c) 2011-2018 Bolero MURAKAMI
https://github.com/bolero-MURAKAMI/Sprout
Distributed under the Boost Software License, Version 1.0. (See accompanying

View file

@ -1,5 +1,5 @@
/*=============================================================================
Copyright (c) 2011-2017 Bolero MURAKAMI
Copyright (c) 2011-2018 Bolero MURAKAMI
https://github.com/bolero-MURAKAMI/Sprout
Distributed under the Boost Software License, Version 1.0. (See accompanying

View file

@ -1,5 +1,5 @@
/*=============================================================================
Copyright (c) 2011-2017 Bolero MURAKAMI
Copyright (c) 2011-2018 Bolero MURAKAMI
https://github.com/bolero-MURAKAMI/Sprout
Distributed under the Boost Software License, Version 1.0. (See accompanying

View file

@ -1,5 +1,5 @@
/*=============================================================================
Copyright (c) 2011-2017 Bolero MURAKAMI
Copyright (c) 2011-2018 Bolero MURAKAMI
https://github.com/bolero-MURAKAMI/Sprout
Distributed under the Boost Software License, Version 1.0. (See accompanying

View file

@ -1,5 +1,5 @@
/*=============================================================================
Copyright (c) 2011-2017 Bolero MURAKAMI
Copyright (c) 2011-2018 Bolero MURAKAMI
https://github.com/bolero-MURAKAMI/Sprout
Distributed under the Boost Software License, Version 1.0. (See accompanying

View file

@ -1,5 +1,5 @@
/*=============================================================================
Copyright (c) 2011-2017 Bolero MURAKAMI
Copyright (c) 2011-2018 Bolero MURAKAMI
https://github.com/bolero-MURAKAMI/Sprout
Distributed under the Boost Software License, Version 1.0. (See accompanying

View file

@ -1,5 +1,5 @@
/*=============================================================================
Copyright (c) 2011-2017 Bolero MURAKAMI
Copyright (c) 2011-2018 Bolero MURAKAMI
https://github.com/bolero-MURAKAMI/Sprout
Distributed under the Boost Software License, Version 1.0. (See accompanying

View file

@ -1,5 +1,5 @@
/*=============================================================================
Copyright (c) 2011-2017 Bolero MURAKAMI
Copyright (c) 2011-2018 Bolero MURAKAMI
https://github.com/bolero-MURAKAMI/Sprout
Distributed under the Boost Software License, Version 1.0. (See accompanying

View file

@ -1,5 +1,5 @@
/*=============================================================================
Copyright (c) 2011-2017 Bolero MURAKAMI
Copyright (c) 2011-2018 Bolero MURAKAMI
https://github.com/bolero-MURAKAMI/Sprout
Distributed under the Boost Software License, Version 1.0. (See accompanying

View file

@ -1,6 +1,6 @@
#!/usr/bin/env python
# =============================================================================
# Copyright (c) 2011-2017 Bolero MURAKAMI
# Copyright (c) 2011-2018 Bolero MURAKAMI
# https://github.com/bolero-MURAKAMI/Sprout
#
# Distributed under the Boost Software License, Version 1.0. (See accompanying

View file

@ -1,6 +1,6 @@
#!/bin/bash
# =============================================================================
# Copyright (c) 2011-2017 Bolero MURAKAMI
# Copyright (c) 2011-2018 Bolero MURAKAMI
# https://github.com/bolero-MURAKAMI/Sprout
#
# Distributed under the Boost Software License, Version 1.0. (See accompanying
@ -45,24 +45,48 @@ get_std_option() {
else
vn=${2//.}
fi
if [ "${3}" = "c++17" -o "${3}" = "c++1z" ]; then
if [ "${3}" = "c++20" -o "${3}" = "c++2a" ]; then
if [ "${1}" = "gcc" ]; then
if [ "${vn}" -lt "480" ]; then
echo -n "-std=c++11"
elif [ "${vn}" -lt "510" ]; then
echo -n "-std=c++1y"
elif [ "${vn}" -lt "610" ]; then
echo -n "-std=c++14"
elif [ "${vn}" -lt "800" ]; then
echo -n "-std=c++17"
else
echo -n "-std=c++1z"
echo -n "-std=c++2a"
fi
elif [ "${1}" = "clang" ]; then
if [ "${vn}" -lt "32" ]; then
echo -n "-std=c++11"
elif [ "${vn}" -lt "350" ]; then
echo -n "-std=c++1y"
else
elif [ "${vn}" -lt "500" ]; then
echo -n "-std=c++1z"
elif [ "${vn}" -lt "600" ]; then
echo -n "-std=c++17"
else
echo -n "-std=c++2a"
fi
fi
elif [ "${3}" = "c++17" -o "${3}" = "c++1z" ]; then
if [ "${1}" = "gcc" ]; then
if [ "${vn}" -lt "480" ]; then
echo -n "-std=c++11"
elif [ "${vn}" -lt "510" ]; then
echo -n "-std=c++1y"
else
echo -n "-std=c++17"
fi
elif [ "${1}" = "clang" ]; then
if [ "${vn}" -lt "32" ]; then
echo -n "-std=c++11"
elif [ "${vn}" -lt "350" ]; then
echo -n "-std=c++1y"
elif [ "${vn}" -lt "500" ]; then
echo -n "-std=c++1z"
else
echo -n "-std=c++17"
fi
fi
elif [ "${3}" = "c++14" -o "${3}" = "c++1y" ]; then