Skip to content

Commit

Permalink
Release 0.6.0
Browse files Browse the repository at this point in the history
  • Loading branch information
thebashpotato committed Aug 19, 2023
1 parent 3550942 commit 3c1fba3
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 6 deletions.
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ cmake_minimum_required(VERSION 3.18)
#
project(
etl
VERSION 0.5.0
VERSION 0.6.0
DESCRIPTION "C++ Extra Template Library"
HOMEPAGE_URL "https://github.com/thebashpotato/etl"
LANGUAGES CXX)
Expand Down
1 change: 1 addition & 0 deletions etl/examples/blackjack/blackjack.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@
/// is that it doesn't provide a way to get the lowest and highest values in an enumeration".
/// Which he is correct. Since this was a problem I had already solved for myself I thought
/// I would share my solution with him and the world (if anyone ever sees this).
#pragma once

#include <algorithm>
#include <cstdlib>
Expand Down
6 changes: 1 addition & 5 deletions etl/include/etl.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -20,9 +20,7 @@
/// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
/// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
/// SOFTWARE.

#ifndef ETL_HPP
#define ETL_HPP
#pragma once

#if __cplusplus >= 201702L

Expand Down Expand Up @@ -516,5 +514,3 @@ namespace etl {
}// namespace etl

#endif// __cplusplus >= 201702l

#endif// ETL_HPP

0 comments on commit 3c1fba3

Please sign in to comment.