Skip to content

Commit

Permalink
Added missing include
Browse files Browse the repository at this point in the history
  • Loading branch information
uphoffc committed May 23, 2019
1 parent 9304617 commit 2c488de
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
4 changes: 3 additions & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,9 @@ cmake_minimum_required (VERSION 2.6)
enable_language (Fortran)

# Compiler settings
add_compile_options (-std=c++11 -Wall -Werror)
add_compile_options (-Wall -Werror)
set (CMAKE_CXX_STANDARD 11)
set (CMAKE_CXX_STANDARD_REQUIRED ON)

# easi library
include_directories (include)
Expand Down
1 change: 1 addition & 0 deletions include/easi/util/RegularGrid.h
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,7 @@
#ifndef EASI_UTIL_REGULARGRID_H_
#define EASI_UTIL_REGULARGRID_H_

#include <cmath>
#include "Matrix.h"

namespace easi {
Expand Down

0 comments on commit 2c488de

Please sign in to comment.