From 59fc51c592f4ade74f3122309d09eab9800501d5 Mon Sep 17 00:00:00 2001 From: Brian Ward Date: Tue, 11 Nov 2025 12:55:10 -0500 Subject: [PATCH] Remove broken STAN_CPP_OPTIMS output from model info --- src/cmdstan/write_stan_flags.hpp | 5 ----- 1 file changed, 5 deletions(-) diff --git a/src/cmdstan/write_stan_flags.hpp b/src/cmdstan/write_stan_flags.hpp index 9a7a259f30..64da56106a 100644 --- a/src/cmdstan/write_stan_flags.hpp +++ b/src/cmdstan/write_stan_flags.hpp @@ -27,11 +27,6 @@ void write_stan_flags(stan::callbacks::writer &writer) { #else writer("STAN_NO_RANGE_CHECKS=false"); #endif -#ifdef STAN_CPP_OPTIMS - writer("STAN_CPP_OPTIMS=true"); -#else - writer("STAN_CPP_OPTIMS=false"); -#endif } } // namespace cmdstan