From 98272cd345c6e4c672e6a5b7721204fcac0502d6 Mon Sep 17 00:00:00 2001 From: Sergei Trofimovich Date: Wed, 29 Dec 2021 17:02:01 +0000 Subject: [PATCH] Add headers for gcc-12 gcc-12 cleaned up headers dependencies a bit and exposed missing header inclusion: src/c++/lib/calibration/IndelErrorModel.hh:100:33: error: 'numeric_limits' is not a member of 'std' 100 | double logErrorRate = -std::numeric_limits::infinity(); | ^~~~~~~~~~~~~~ --- src/c++/lib/calibration/IndelErrorModel.hh | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/c++/lib/calibration/IndelErrorModel.hh b/src/c++/lib/calibration/IndelErrorModel.hh index 761930ec..7d4d6498 100644 --- a/src/c++/lib/calibration/IndelErrorModel.hh +++ b/src/c++/lib/calibration/IndelErrorModel.hh @@ -19,6 +19,8 @@ #pragma once +#include + #include "IndelErrorRateSet.hh" #include "starling_common/AlleleReportInfo.hh"