diff --git a/.gitignore b/.gitignore index 21a2bbcc..803d6f08 100644 --- a/.gitignore +++ b/.gitignore @@ -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/ @@ -41,6 +42,7 @@ docs/source/api _build/ Debug/ Release/ +install/ # Users commonly store their specific CMake settings in a toolchain file toolchain.cmake diff --git a/include/utilities/dsl/leaf.hpp b/include/utilities/dsl/leaf.hpp index 11ee2a65..d4b43f3e 100644 --- a/include/utilities/dsl/leaf.hpp +++ b/include/utilities/dsl/leaf.hpp @@ -15,7 +15,9 @@ */ #pragma once +#include #include +#include namespace utilities::dsl { @@ -305,4 +307,4 @@ const std::decay_t& Leaf::value() const { throw std::runtime_error("Wrapped value is not of type T"); } -} // namespace utilities::dsl \ No newline at end of file +} // namespace utilities::dsl