Skip to content

Commit

Permalink
Merge branch 'patch-v1.1.1' into 'develop'
Browse files Browse the repository at this point in the history
Fix missing includes

See merge request educelab/OpenABF!12
  • Loading branch information
csparker247 committed Feb 28, 2023
2 parents 103041a + c72844f commit ed546ea
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 3 deletions.
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
cmake_minimum_required(VERSION 3.15 FATAL_ERROR)
project(OpenABF VERSION 1.1)
project(OpenABF VERSION 1.1.1)

# Setup project directories
set(EXECUTABLE_OUTPUT_PATH ${CMAKE_BINARY_DIR}/bin)
Expand Down
2 changes: 1 addition & 1 deletion include/OpenABF/Exceptions.hpp
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
#pragma once

#include <exception>
#include <stdexcept>
#include <string>

namespace OpenABF
Expand Down
1 change: 1 addition & 0 deletions include/OpenABF/Vec.hpp
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
#pragma once

#include <array>
#include <iostream>

#include "OpenABF/Math.hpp"

Expand Down
3 changes: 2 additions & 1 deletion single_include/OpenABF/OpenABF.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ limitations under the License.
// #include "OpenABF/Exceptions.hpp"


#include <exception>
#include <stdexcept>
#include <string>

namespace OpenABF
Expand Down Expand Up @@ -159,6 +159,7 @@ constexpr auto to_degrees(T2 rad) -> T


#include <array>
#include <iostream>

// #include "OpenABF/Math.hpp"

Expand Down

0 comments on commit ed546ea

Please sign in to comment.