Commit 46ca92d00ae60527e6bdf8d3628280a90882dbd8
1 parent
91acc36e
Exists in
master
and in
94 other branches
add / move headers (from branch SolarOrbiter)
Showing
10 changed files
with
15 additions
and
7 deletions
Show diff stats
src/Common/ParameterIndexesTool.hh
src/Info/DataSetInfo.cc
... | ... | @@ -6,6 +6,7 @@ |
6 | 6 | */ |
7 | 7 | |
8 | 8 | #include "DataSetInfo.hh" |
9 | +#define PUSHINFO(infoMap, key, value) if(!value.empty())infoMap.push_back(std::pair<std::string,std::string>(key,value)) | |
9 | 10 | |
10 | 11 | namespace AMDA { |
11 | 12 | namespace Info { |
... | ... | @@ -29,8 +30,6 @@ std::ostream& operator<<(std::ostream& out, const DataSetInfo& dsi){ |
29 | 30 | return out; |
30 | 31 | } |
31 | 32 | |
32 | -#define PUSHINFO(infoMap, key, value) if(!value.empty())infoMap.push_back(std::pair<std::string,std::string>(key,value)) | |
33 | - | |
34 | 33 | std::vector<std::pair<std::string,std::string>> DataSetInfo::getInfoMap() |
35 | 34 | { |
36 | 35 | std::vector<std::pair<std::string,std::string>> infoMap; | ... | ... |
src/Info/DataSetInfo.hh
src/Info/InstrumentInfo.hh
src/Info/MissionInfo.hh
src/ParamOutputImpl/Plot/ColorSeriesProperties.hh
src/ParamOutputImpl/Plot/DigitalAxis.cc
... | ... | @@ -169,7 +169,7 @@ double* DigitalAxis::getComputedValues(double* originalValues_, int size_, doubl |
169 | 169 | memcpy (computedValues, originalValues_, size_ * sizeof (double)); |
170 | 170 | |
171 | 171 | // Need to filter min max values ? |
172 | - if ((isnan(min) == false) || (isnan(max) == false)) { | |
172 | + if ((std::isnan(min) == false) || (std::isnan(max) == false)) { | |
173 | 173 | for (int i = 0; i < size_; ++i) { |
174 | 174 | if ((originalValues_[i] < min) || (originalValues_[i] > max)) { |
175 | 175 | computedValues [i] = nan(""); | ... | ... |
src/ParamOutputImpl/Plot/DigitalAxis.hh
src/ParamOutputImpl/Plot/PanelPlotOutput.cc
src/Parameters/Demangle.cc
... | ... | @@ -4,7 +4,7 @@ |
4 | 4 | * Created on: Nov 16, 2012 |
5 | 5 | * Author: f.casimir |
6 | 6 | */ |
7 | - | |
7 | +#include <cxxabi.h> | |
8 | 8 | #include "Demangle.hh" |
9 | 9 | |
10 | 10 | namespace AMDA { |
... | ... | @@ -15,9 +15,6 @@ namespace Helpers { |
15 | 15 | // Here's that problem fixed, but the code is still non-re-entrant and not thread-safe. |
16 | 16 | // Anyone care to improve it? |
17 | 17 | |
18 | -#include <cxxabi.h> | |
19 | - | |
20 | - | |
21 | 18 | const char* Demangle(const char* name) |
22 | 19 | { |
23 | 20 | static char buf[1024]; | ... | ... |