From 0f9311d46aa06ecf9fecdd500467e5e58350adfe Mon Sep 17 00:00:00 2001 From: Cedric Nugteren Date: Fri, 14 Oct 2016 20:56:32 +0200 Subject: Fixed an issue with a growing database: the database is now a global variable in a namespace and its container uses const-pointers to the actual data --- src/routine.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/routine.cpp') diff --git a/src/routine.cpp b/src/routine.cpp index d938d66f..80764b74 100644 --- a/src/routine.cpp +++ b/src/routine.cpp @@ -24,7 +24,7 @@ namespace clblast { // Constructor: not much here, because no status codes can be returned Routine::Routine(Queue &queue, EventPointer event, const std::string &name, const std::vector &routines, const Precision precision, - const std::vector &userDatabase): + const std::vector &userDatabase): precision_(precision), routine_name_(name), queue_(queue), -- cgit v1.2.3