-
Notifications
You must be signed in to change notification settings - Fork 126
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add missing <algorithm> header to a few test files
- Loading branch information
Chuck Atkins
committed
Jul 1, 2020
1 parent
70b5095
commit 22334fb
Showing
2 changed files
with
5 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -8,13 +8,16 @@ | |
* Author: William F Godoy [email protected] | ||
*/ | ||
|
||
#include <cstring> | ||
|
||
#include <algorithm> | ||
|
||
#include <adios2_c.h> | ||
|
||
#if ADIOS2_USE_MPI | ||
#include <mpi.h> | ||
#endif | ||
|
||
#include <cstring> | ||
#include <gtest/gtest.h> | ||
|
||
#include "SmallTestData_c.h" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -7,6 +7,7 @@ | |
|
||
#include <cstdint> | ||
|
||
#include <algorithm> | ||
#include <array> | ||
#include <limits> | ||
#include <string> | ||
|