summaryrefslogtreecommitdiff
path: root/src/routine.hpp
diff options
context:
space:
mode:
authorCedric Nugteren <web@cedricnugteren.nl>2017-04-10 20:11:45 +0200
committerCedric Nugteren <web@cedricnugteren.nl>2017-04-10 20:11:45 +0200
commit22b3ea9256bd197da3cd320560c14e5f3bd7fb86 (patch)
tree0e7b4028bb4534624b5b836a413745f275f6838b /src/routine.hpp
parent52dd7433caac3f30b6c02ed299ec1b16dc7614ea (diff)
parent0da1e380974007f69b827f6b10ef0243249d0c5e (diff)
Merge branch 'development' into cublas_reference
Conflicts: scripts/generator/generator.py
Diffstat (limited to 'src/routine.hpp')
-rw-r--r--src/routine.hpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/routine.hpp b/src/routine.hpp
index eb11b566..903ccdb1 100644
--- a/src/routine.hpp
+++ b/src/routine.hpp
@@ -40,7 +40,7 @@ class Routine {
// and routine list, otherwise the caching logic will break.
explicit Routine(Queue &queue, EventPointer event, const std::string &name,
const std::vector<std::string> &routines, const Precision precision,
- const std::vector<const Database::DatabaseEntry*> &userDatabase,
+ const std::vector<Database::DatabaseEntry> &userDatabase,
std::initializer_list<const char *> source);
// List of kernel-routine look-ups
@@ -59,7 +59,7 @@ class Routine {
void InitProgram(std::initializer_list<const char *> source);
// Initializes db_, fetching cached database or building one
- void InitDatabase(const std::vector<const Database::DatabaseEntry*> &userDatabase);
+ void InitDatabase(const std::vector<Database::DatabaseEntry> &userDatabase);
protected: