From 66a766b0b781001262863feb2415d06d4fa00717 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?S=C3=A9bastien=20Villemot?= <sebastien@dynare.org>
Date: Tue, 4 Dec 2018 18:41:04 +0100
Subject: [PATCH] Small modernization

---
 src/DynamicModel.cc | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/src/DynamicModel.cc b/src/DynamicModel.cc
index 0316c975..dbe07c4d 100644
--- a/src/DynamicModel.cc
+++ b/src/DynamicModel.cc
@@ -5637,25 +5637,25 @@ DynamicModel::writeLatexOriginalFile(const string &basename, const bool write_eq
 void
 DynamicModel::substituteEndoLeadGreaterThanTwo(bool deterministic_model, bool nopreprocessoroutput)
 {
-  substituteLeadLagInternal(AuxVarType::endoLead, deterministic_model, vector<string>(), nopreprocessoroutput);
+  substituteLeadLagInternal(AuxVarType::endoLead, deterministic_model, {}, nopreprocessoroutput);
 }
 
 void
 DynamicModel::substituteEndoLagGreaterThanTwo(bool deterministic_model, bool nopreprocessoroutput)
 {
-  substituteLeadLagInternal(AuxVarType::endoLag, deterministic_model, vector<string>(), nopreprocessoroutput);
+  substituteLeadLagInternal(AuxVarType::endoLag, deterministic_model, {}, nopreprocessoroutput);
 }
 
 void
 DynamicModel::substituteExoLead(bool deterministic_model, bool nopreprocessoroutput)
 {
-  substituteLeadLagInternal(AuxVarType::exoLead, deterministic_model, vector<string>(), nopreprocessoroutput);
+  substituteLeadLagInternal(AuxVarType::exoLead, deterministic_model, {}, nopreprocessoroutput);
 }
 
 void
 DynamicModel::substituteExoLag(bool deterministic_model, bool nopreprocessoroutput)
 {
-  substituteLeadLagInternal(AuxVarType::exoLag, deterministic_model, vector<string>(), nopreprocessoroutput);
+  substituteLeadLagInternal(AuxVarType::exoLag, deterministic_model, {}, nopreprocessoroutput);
 }
 
 void
-- 
GitLab