Skip to content

Commit 9915cae

Browse files
authored
Mark Hexastore as deprecated (#764)
* Mark Hexastore as deprecated * minor
1 parent 392579d commit 9915cae

2 files changed

Lines changed: 10 additions & 9 deletions

File tree

include/phasar/DB/Hexastore.h

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,8 @@ struct HSResult {
7373
*
7474
* @brief Efficient data structure for holding graphs in databases.
7575
*/
76-
class Hexastore {
76+
class [[deprecated("This ancient API is not maintained for long and should not "
77+
"be used anymore!")]] Hexastore {
7778
private:
7879
sqlite3 *HSInternalDB{};
7980
static int callback(void * /*NotUsed*/, int Argc, char **Argv,

unittests/DB/CMakeLists.txt

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
1-
if(SQLite3_FOUND)
2-
set(DBSources
3-
HexastoreTest.cpp
4-
)
1+
# if(SQLite3_FOUND)
2+
# set(DBSources
3+
# HexastoreTest.cpp
4+
# )
55

6-
foreach(TEST_SRC ${DBSources})
7-
add_phasar_unittest(${TEST_SRC})
8-
endforeach(TEST_SRC)
9-
endif()
6+
# foreach(TEST_SRC ${DBSources})
7+
# add_phasar_unittest(${TEST_SRC})
8+
# endforeach(TEST_SRC)
9+
# endif()

0 commit comments

Comments
 (0)