@@ -245,30 +245,31 @@ class ApplicationStarter {
245245
246246 // load frequently used headers
247247 const char * code =
248- " #include <algorithm>\n "
249- " #include <numeric>\n "
250- " #include <complex>\n "
251- " #include <iostream>\n "
252- " #include <string.h>\n " // for strcpy
253- " #include <string>\n "
248+ " #include <algorithm>\n "
249+ " #include <numeric>\n "
250+ " #include <complex>\n "
251+ " #include <iostream>\n "
252+ " #include <string.h>\n " // for strcpy
253+ " #include <string>\n "
254254 // "#include <DllImport.h>\n" // defines R__EXTERN
255- " #include <vector>\n "
256- " #include <utility>\n "
257- " #include <memory>\n "
258- " #include <functional>\n " // for the dispatcher code to use std::function
259- " #include <map>\n " // FIXME: Replace with modules
260- " #include <sstream>\n " // FIXME: Replace with modules
261- " #include <array>\n " // FIXME: Replace with modules
262- " #include <list>\n " // FIXME: Replace with modules
263- " #include <deque>\n " // FIXME: Replace with modules
264- " #include <tuple>\n " // FIXME: Replace with modules
265- " #include <set>\n " // FIXME: Replace with modules
266- " #include <chrono>\n " // FIXME: Replace with modules
267- " #include <cmath>\n " // FIXME: Replace with modules
268- " #if __has_include(<optional>)\n "
269- " #include <optional>\n "
270- " #endif\n "
271- " #include \" clang/Interpreter/CppInterOp.h\" " ;
255+ " #include <vector>\n "
256+ " #include <utility>\n "
257+ " #include <memory>\n "
258+ " #include <functional>\n " // for the dispatcher code to use
259+ // std::function
260+ " #include <map>\n " // FIXME: Replace with modules
261+ " #include <sstream>\n " // FIXME: Replace with modules
262+ " #include <array>\n " // FIXME: Replace with modules
263+ " #include <list>\n " // FIXME: Replace with modules
264+ " #include <deque>\n " // FIXME: Replace with modules
265+ " #include <tuple>\n " // FIXME: Replace with modules
266+ " #include <set>\n " // FIXME: Replace with modules
267+ " #include <chrono>\n " // FIXME: Replace with modules
268+ " #include <cmath>\n " // FIXME: Replace with modules
269+ " #if __has_include(<optional>)\n "
270+ " #include <optional>\n "
271+ " #endif\n "
272+ " #include \" CppInterOp/CppInterOp.h\" " ;
272273 Cpp::Process (code);
273274
274275 // create helpers for comparing thingies
0 commit comments