From 995580ea073dc4ad06306a4a3bcc50f8907a6a5e Mon Sep 17 00:00:00 2001
From: Jonathan Lambrechts <jonathan.lambrechts@uclouvain.be>
Date: Wed, 28 Apr 2010 09:21:32 +0000
Subject: [PATCH] add todo comments

---
 Solver/function.cpp | 4 ++++
 1 file changed, 4 insertions(+)

diff --git a/Solver/function.cpp b/Solver/function.cpp
index e8db646bb5..154f188e15 100644
--- a/Solver/function.cpp
+++ b/Solver/function.cpp
@@ -365,6 +365,10 @@ class functionC : public function {
   void (*callback)(void);
   public:
   static void buildLibrary(std::string code, std::string filename) {
+    //todo use CMAKE_CXX_COMPILER
+    //todo use clean temporary file names
+    //todo work on windows :-)
+    //todo if DG_BUILD_DIR is not defined, use the directory used at compilation time
     FILE *tmpSrc = fopen("_tmpSrc.cpp","w");
     fprintf(tmpSrc, "%s\n",code.c_str());
     fclose(tmpSrc);
-- 
GitLab