From d0e2d3a6084993414aed295e776d4de43b9fa22c Mon Sep 17 00:00:00 2001 From: Hirotoshi YOSHITAKA Date: Mon, 6 Oct 2014 23:47:11 +0900 Subject: [PATCH] Add algorithm header include Without algorithm header, Visual Studio complaints that std::max is not declared and defined. Including algorithm header resolves this issue. --- RtAudio.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/RtAudio.cpp b/RtAudio.cpp index af7d205..778cbf2 100644 --- a/RtAudio.cpp +++ b/RtAudio.cpp @@ -45,6 +45,7 @@ #include #include #include +#include // Static variable definitions. const unsigned int RtApi::MAX_SAMPLE_RATES = 14;