Skip to content

Commit 76a36b7

Browse files
committed
GPU Standalone: Fix compilation without FMT
1 parent 79ce47b commit 76a36b7

File tree

2 files changed

+1
-2
lines changed

2 files changed

+1
-2
lines changed

GPU/GPUTracking/Definitions/GPULogging.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@
6969
#define GPUCritical(...) GPUWarning(__VA_ARGS__)
7070
#define GPUFatal(string, ...) \
7171
{ \
72-
fprintf(stderr, string "\n", __VA_ARGS__); \
72+
fprintf(stderr, string "\n", ##__VA_ARGS__); \
7373
exit(1); \
7474
}
7575
#endif

GPU/GPUTracking/Standalone/CMakeLists.txt

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -128,7 +128,6 @@ find_package(O2GPU)
128128
add_subdirectory(../../ GPU)
129129
add_library(standalone_support SHARED ${O2_DIR}/Common/Field/src/MagFieldFast.cxx
130130
${O2_DIR}/DataFormats/Detectors/TPC/src/CompressedClusters.cxx
131-
${O2_DIR}/DataFormats/simulation/src/MCCompLabel.cxx
132131
${O2_DIR}/DataFormats/Reconstruction/src/TrackParametrization.cxx
133132
${O2_DIR}/DataFormats/Reconstruction/src/TrackParametrizationWithError.cxx
134133
${O2_DIR}/DataFormats/Reconstruction/src/Vertex.cxx

0 commit comments

Comments
 (0)