From eade577662299957cd1eaff8179474e128efdf8b Mon Sep 17 00:00:00 2001
From: Jason Hiser <jdh8d@virginia.edu>
Date: Sat, 12 Jan 2019 18:30:47 -0800
Subject: [PATCH] fixed issue with older compilers

Former-commit-id: b26de9eaa26bd63c0ebbfd415dc6f36e28872db0
---
 libIRDB/test/fill_in_indtargs.cpp | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

diff --git a/libIRDB/test/fill_in_indtargs.cpp b/libIRDB/test/fill_in_indtargs.cpp
index 9677a1782..489c089c1 100644
--- a/libIRDB/test/fill_in_indtargs.cpp
+++ b/libIRDB/test/fill_in_indtargs.cpp
@@ -991,7 +991,9 @@ notes:
 				cout<<" -- valid target!"<<endl;
 
 			// record this entry of the table
-			this_table_targets.push_back({candidate_ibta, entry_address,prov});
+			// this works on newer compilers and is easier to read, but older compilers....
+			// this_table_targets.push_back({candidate_ibta, entry_address,prov});
+			this_table_targets.push_back(make_tuple(candidate_ibta, entry_address,prov));
 
 			if(target_count>my_bound)
 				break;
-- 
GitLab