Uh oh!
There was an error while loading. Please reload this page.
Fix #428: adding missing include for std::array - #432
Conversation
std::array is used in test_DataDeflater.cxx, but the include was missing, some compilers seem to be more strict on that and fail. Also suppressing a warning by using the static_assert with two arguments (condition and error string)
alibuild
commented
Jun 27, 2017
Error while checking build/o2checkcode/o2-daq for f249474: Full log here. |
sawenzel
commented
Jun 28, 2017
@matthiasrichter: Can you please also fix this /mnt/mesos/sandbox/sandbox/sw/SOURCES/O2/0_O2_DAQ/0//Utilities/DataCompression/include/DataCompression/DataDeflater.h:1:1: error: missing or malformed copyright notice to make the code checker happy? |
As discussed in #428, there is a compile error on MacOs with Apple LLVM version 8.0.0 (clang-800.0.42.1): /Users/swenzel/alisw_new/sw/SOURCES/O2/dev/0/Utilities/aliceHLTwrapper/src/Component.cxx:169:13: error: use of undeclared identifier 'ENOKEY' This is super strange since you already seem to include the right header. Other symbols such as ENOSYS are found. |
sawenzel
commented
Jun 28, 2017
AliceO2Group#432) Pubisher part can publish cells or digits upon user request. Digits and Cells have the same interface however digits type from now on purely stores raw ADCs from the digitizer (change signal type from float to short) and is therefore no longer suitable for the use of the tower signal after the raw fit. Decommissioning of the digit branch needs to be done in a second step, together with adaptions in the digits QC task.
* Code for PID analysis * Updated names, formatting and syntax * update CMakeLists source file name
std::array is used in test_DataDeflater.cxx, but the include was
missing, some compilers seem to be more strict on that and fail.
Also suppressing a warning by using the static_assert with two
arguments (condition and error string)