Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ include(EkatUtils)
IsDebugBuild(EKAT_IS_DEBUG_BUILD)

set (EKAT_VERSION_MAJOR 2)
set (EKAT_VERSION_MINOR 0)
set (EKAT_VERSION_MINOR 1)
set (EKAT_VERSION_PATCH 0)

message(STATUS "EKAT version: ${EKAT_VERSION_MAJOR}.${EKAT_VERSION_MINOR}.${EKAT_VERSION_PATCH}")
Expand Down
2 changes: 0 additions & 2 deletions src/core/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -111,8 +111,6 @@ set (HEADERS
ekat_rational_constant.hpp
ekat_scalar_traits.hpp
ekat_scaling_factor.hpp
ekat_std_any.hpp
ekat_std_enable_shared_from_this.hpp
ekat_std_map_key_iterator.hpp
ekat_std_type_traits.hpp
ekat_std_utils.hpp
Expand Down
2 changes: 1 addition & 1 deletion src/core/ekat_parameter_list.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ namespace ekat {
* A parameter list store two things: parameters, and sublists.
* Each of these is stored in a map, which uses a string as key.
*
* Parameters are stored using ekat::any, which allows to store pretty
* Parameters are stored using std::any, which allows to store pretty
* much anything you want in the list. However, this means that when
* you try to retrieve a parameter, you must already know what the
* type is, or else the any_cast will throw. You can specify the type
Expand Down
209 changes: 0 additions & 209 deletions src/core/ekat_std_any.hpp

This file was deleted.

72 changes: 0 additions & 72 deletions src/core/ekat_std_enable_shared_from_this.hpp

This file was deleted.

4 changes: 0 additions & 4 deletions tests/core/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -54,10 +54,6 @@ EkatCreateUnitTest(comm comm.cpp
EkatCreateUnitTest(units units.cpp
LIBS ekat::Core)

# Test std_meta stuff
EkatCreateUnitTest(std_meta std_meta.cpp
LIBS ekat::Core)

# Test meta utilities
EkatCreateUnitTest(meta_utils meta_utils.cpp
LIBS ekat::Core)
Expand Down
25 changes: 0 additions & 25 deletions tests/core/std_meta.cpp

This file was deleted.

Loading