Changeset 24477
- Timestamp:
- 12/17/19 16:35:11 (5 years ago)
- Location:
- issm/trunk-jpl/src/c/shared
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
issm/trunk-jpl/src/c/shared/Elements/PrintArrays.cpp
r23508 r24477 1 1 #include "./elements.h" 2 2 #include "../io/Print/Print.h" 3 #include <iomanip> 3 4 using namespace std; 4 5 -
issm/trunk-jpl/src/c/shared/Exceptions/Exceptions.cpp
r20644 r24477 11 11 #include <cstring> 12 12 #include <cstdio> 13 #include <string> 14 #include <iostream> 15 #include <iomanip> 13 16 #include "./exceptions.h" 14 17 #include "../io/Print/Print.h" -
issm/trunk-jpl/src/c/shared/Exceptions/exceptions.h
r22634 r24477 23 23 #error "Cannot compile with HAVE_CONFIG_H symbol! run configure first!" 24 24 #endif 25 26 /*Only include forward declaration to save compile time*/ 27 #include <iosfwd> 28 #include <sstream> 25 29 26 30 /*macros: */ -
issm/trunk-jpl/src/c/shared/io/Print/Print.h
r15100 r24477 12 12 #endif 13 13 14 #include <string> 15 #include <ios tream>14 /*Only include forward declaration to save compile time*/ 15 #include <iosfwd> 16 16 #include <sstream> 17 #include <iomanip>18 17 19 18 using namespace std; -
issm/trunk-jpl/src/c/shared/io/Print/PrintfFunction.cpp
r15839 r24477 12 12 #include <stdarg.h> 13 13 #include <cstdio> 14 #include <string> 15 #include <iostream> 16 #include <iomanip> 17 14 18 #ifdef _HAVE_ANDROID_NDK_ 15 19 #include <android/log.h> … … 21 25 22 26 int PrintfFunctionOnCpu0(const string & message){ 23 int my_rank;24 27 25 28 /*recover my_rank:*/ 26 my_rank=IssmComm::GetRank();29 int my_rank=IssmComm::GetRank(); 27 30 28 31 if(my_rank==0){
Note:
See TracChangeset
for help on using the changeset viewer.