From 9d921e29fe345069d7ea6087889ee3deea3eaf1a Mon Sep 17 00:00:00 2001 From: Matthias Koefferlein Date: Sun, 8 Sep 2019 23:40:34 +0200 Subject: [PATCH] Fixed Windows build. --- src/rdb/rdb/rdbUtils.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/rdb/rdb/rdbUtils.h b/src/rdb/rdb/rdbUtils.h index cfdfb90a2..e95204d26 100644 --- a/src/rdb/rdb/rdbUtils.h +++ b/src/rdb/rdb/rdbUtils.h @@ -128,7 +128,7 @@ RDB_PUBLIC void create_items_from_edge_pairs (rdb::Database *db, rdb::id_type ce * This transformation is useful for providing the DBU-to-micron conversion. */ template -RDB_PUBLIC void create_items_from_sequence (rdb::Database *db, rdb::id_type cell_id, rdb::id_type cat_id, const Trans &trans, Iter begin, Iter end) +RDB_PUBLIC_TEMPLATE void create_items_from_sequence (rdb::Database *db, rdb::id_type cell_id, rdb::id_type cat_id, const Trans &trans, Iter begin, Iter end) { for (Iter o = begin; o != end; ++o) { rdb::Item *item = db->create_item (cell_id, cat_id);