Misc changes

This commit is contained in:
Jacob Dufault 2017-04-20 23:47:17 -07:00
parent 5ef4f55053
commit 1fcefb5262
4 changed files with 28 additions and 6 deletions

View File

@ -1,5 +1,5 @@
// Place your settings in this file to overwrite default and user settings.
{
"editor.lineNumbers": "on",
"cquery.cacheDirectory": "C:/Users/jacob/Desktop/superindex/indexer/CACHE"
"cquery.cacheDirectory": "C:/Users/jacob/Desktop/superindex/indexer/foo/CACHE"
}

19
foo/a.h
View File

@ -1,3 +1,22 @@
void foobar() {}

View File

@ -1,8 +1,11 @@
#include "a.h"
enum Foo {
struct Baz {
};
void faz() {
foobar();
void foo() {
Baz b;
}

View File

@ -1,10 +1,10 @@
// Place your settings in this file to overwrite default and user settings.
{
"cquery.cacheDirectory": "C:/Users/jacob/Desktop/superindex/indexer/CACHE",
"cquery.blacklist": [
// ".*libclangmm/.*"
],
"cquery.whitelist": [
// ".*platform.*.cc"
],
"cquery.cacheDirectory": "C:/Users/jacob/Desktop/superindex/indexer/CACHE"
]
}