aboutsummaryrefslogtreecommitdiff
path: root/.vscode
diff options
context:
space:
mode:
authordec05eba <dec05eba@protonmail.com>2018-05-14 00:20:11 +0200
committerdec05eba <dec05eba@protonmail.com>2020-08-18 23:25:46 +0200
commit8b94c3bf3a06caa7b003fe61e8242bdb00004eb5 (patch)
treec307bf3a9c1bf38ea23608b0700755fc76e6980e /.vscode
parent0c8761b3d76912f034a0cb819d72f0349a25bf4f (diff)
Replace files with sqlite
Using sqlite because sqlite has transactions, storing/loading from files automatically, unloading data that is not accessed often. Removed cosmetic data (node name, username). They can be added using addData by the application that uses odhtdb instead. Database callback functions can now be called with stored data using database.loadNode function. TODO: Add local user storage (with password) back, it has been temorary disabled
Diffstat (limited to '.vscode')
-rw-r--r--.vscode/c_cpp_properties.json3
-rw-r--r--.vscode/settings.json5
2 files changed, 5 insertions, 3 deletions
diff --git a/.vscode/c_cpp_properties.json b/.vscode/c_cpp_properties.json
index e294ff4..73ef30c 100644
--- a/.vscode/c_cpp_properties.json
+++ b/.vscode/c_cpp_properties.json
@@ -40,7 +40,6 @@
],
"defines": [],
"intelliSenseMode": "clang-x64",
- "compileCommands": "${workspaceRoot}/compile_commands.json",
"browse": {
"path": [
"/usr/lib/gcc/x86_64-pc-linux-gnu/7.2.1/../../../../include/c++/7.2.1",
@@ -82,5 +81,5 @@
}
}
],
- "version": 3
+ "version": 4
} \ No newline at end of file
diff --git a/.vscode/settings.json b/.vscode/settings.json
index 48e2d5a..aeb76fb 100644
--- a/.vscode/settings.json
+++ b/.vscode/settings.json
@@ -52,6 +52,9 @@
"type_traits": "cpp",
"utility": "cpp",
"valarray": "cpp",
- "__config": "cpp"
+ "__config": "cpp",
+ "__nullptr": "cpp",
+ "hash_map": "cpp",
+ "hash_set": "cpp"
}
} \ No newline at end of file