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: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@
# These are directories used by IDEs for storing settings
.idea/
.vscode/
.cache/

# These are common Python virtual enviornment directory names
venv/
Expand All @@ -41,6 +42,7 @@ docs/source/api
_build/
Debug/
Release/
install/

# Users commonly store their specific CMake settings in a toolchain file
toolchain.cmake
4 changes: 3 additions & 1 deletion include/utilities/dsl/leaf.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,9 @@
*/

#pragma once
#include <stdexcept>
#include <utilities/dsl/detail_/leaf_holder.hpp>
#include <utility>

namespace utilities::dsl {

Expand Down Expand Up @@ -305,4 +307,4 @@ const std::decay_t<T>& Leaf::value() const {
throw std::runtime_error("Wrapped value is not of type T");
}

} // namespace utilities::dsl
} // namespace utilities::dsl
Loading