Skip to content

Commit

Permalink
Fix build errors (cxx flags erased and std::precision header)
Browse files Browse the repository at this point in the history
  • Loading branch information
Adraub authored Jan 22, 2025
1 parent cbf53a9 commit 5c55d90
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
2 changes: 1 addition & 1 deletion mad_icp/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ project(mad_icp LANGUAGES CXX)

set(CMAKE_BUILD_TYPE Release)
set(CMAKE_CXX_STANDARD 17)
set(CMAKE_CXX_FLAGS -Werror)
set(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -Werror")

# this is required only to compile apps in C++, if you work in Python this can be set to off
# if need to compile C++ apps, when executing CMake run `cmake -DCOMPILE_CPP_APPS=ON ..`
Expand Down
1 change: 1 addition & 0 deletions mad_icp/apps/cpp_runners/bin_runner.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@
// ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
// POSSIBILITY OF SUCH DAMAGE.

#include <iomanip>
#include <iostream>

#include <Eigen/Core>
Expand Down

0 comments on commit 5c55d90

Please sign in to comment.