Skip to content

Commit

Permalink
Fix missing include in exact_solution.h.
Browse files Browse the repository at this point in the history
We use std::unique_ptr in this header, but it was only being included
by accident on the main compilers we test with. Compiling with GCC
5.4.0 on Linux Mint 18 uncovered this issue.

Refs libMesh#1594.
Refs libMesh#1593.
  • Loading branch information
jwpeterson committed Feb 19, 2018
1 parent 06af0c0 commit ed77fef
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions include/error_estimation/exact_solution.h
Expand Up @@ -26,6 +26,7 @@
// C++ includes
#include <map>
#include <vector>
#include <memory>

namespace libMesh
{
Expand Down

0 comments on commit ed77fef

Please sign in to comment.