diff --git a/src/DynamicModel.cc b/src/DynamicModel.cc
index 1b1e6c313ad3c557691a6d1695d34aac759f9faf..d0270aa10184e19a4f8675b14916ea3e3b002efe 100644
--- a/src/DynamicModel.cc
+++ b/src/DynamicModel.cc
@@ -23,7 +23,6 @@
 #include <cstdlib>
 #include <iostream>
 #include <numeric>
-#include <ranges>
 #include <regex>
 #include <sstream>
 #include <string_view>
@@ -3486,18 +3485,18 @@ void
 DynamicModel::detrendEquations()
 {
   // We go backwards in the list of trend_vars, to deal correctly with I(2) processes
-  for (const auto& it : std::ranges::reverse_view(nonstationary_symbols_map))
+  for (auto it = nonstationary_symbols_map.crbegin(); it != nonstationary_symbols_map.crend(); ++it)
     {
       for (auto& equation : equations)
         {
           equation = dynamic_cast<BinaryOpNode*>(
-              equation->detrend(it.first, it.second.first, it.second.second));
+              equation->detrend(it->first, it->second.first, it->second.second));
           assert(equation);
         }
       for (auto& equation : static_only_equations)
         {
           equation = dynamic_cast<BinaryOpNode*>(
-              equation->detrend(it.first, it.second.first, it.second.second));
+              equation->detrend(it->first, it->second.first, it->second.second));
           assert(equation);
         }
     }
diff --git a/src/ModelEquationBlock.cc b/src/ModelEquationBlock.cc
index 1cbc65e80975045d6f492fa56fd9806fbab9e2ce..47842710bdb6ae62b16c9b977936501fc46f9ba8 100644
--- a/src/ModelEquationBlock.cc
+++ b/src/ModelEquationBlock.cc
@@ -19,7 +19,6 @@
 
 #include <algorithm>
 #include <cassert>
-#include <ranges>
 #include <sstream>
 
 #include "ModelEquationBlock.hh"
@@ -390,10 +389,10 @@ void
 Epilogue::detrend(const map<int, expr_t>& trend_symbols_map,
                   const nonstationary_symbols_map_t& nonstationary_symbols_map)
 {
-  for (const auto& it : ranges::reverse_view(nonstationary_symbols_map))
+  for (auto it = nonstationary_symbols_map.crbegin(); it != nonstationary_symbols_map.crend(); ++it)
     for (auto& [symb_id, expr] : dynamic_def_table)
       {
-        expr = expr->detrend(it.first, it.second.first, it.second.second);
+        expr = expr->detrend(it->first, it->second.first, it->second.second);
         assert(expr);
       }
 
diff --git a/src/VariableDependencyGraph.cc b/src/VariableDependencyGraph.cc
index 7e649ca38a923107627d8c382149ad85304c8346..d176417aa542c081c1920ab6550405252ca33ffa 100644
--- a/src/VariableDependencyGraph.cc
+++ b/src/VariableDependencyGraph.cc
@@ -29,7 +29,6 @@
 #include <boost/graph/strong_components.hpp>
 #include <boost/graph/topological_sort.hpp>
 #pragma GCC diagnostic pop
-#include <ranges>
 
 using namespace boost;
 
@@ -326,8 +325,8 @@ VariableDependencyGraph::reorderRecursiveVariables(const set<int>& feedback_vert
   auto v_index = get(vertex_index, G);
 
   // Suppress feedback vertices, in decreasing order
-  for (int feedback_vertex : ranges::reverse_view(feedback_vertices))
-    G.suppress(feedback_vertex);
+  for (auto it = feedback_vertices.rbegin(); it != feedback_vertices.rend(); ++it)
+    G.suppress(*it);
 
   bool something_has_been_done = true;
   while (something_has_been_done)