Skip to content

Commit 3cbb991

Browse files
committed
Fix makefile
1 parent 17dd28e commit 3cbb991

2 files changed

Lines changed: 3 additions & 3 deletions

File tree

Makefile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,8 @@ test_sqlite_blaster: test_sqlite_blaster.cpp src/*.h
1616

1717
clean:
1818
rm test_sqlite_blaster
19-
rm *.db
20-
rm *.txt
19+
rm *.db
20+
rm *.txt
2121

2222
#build/.o: src/imain.cpp src/*.h
2323
# $(CXX) $(CXXFLAGS) $(INCLUDES) -c src/imain.cpp -o build/imain.o

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,7 @@ int main() {
9292
std::vector<std::string> col_names = {"key", "value"}; // -std >= c++11
9393
sqlite_index_blaster sqib(2, 1, col_names, "kv_index", 4096, 40, "kv_idx.db");
9494
sqib.put_string("hello", "world");
95-
cout << "Value of hello is " << sqib.get_string("hello", "not_found") << endl;
95+
std::cout << "Value of hello is " << sqib.get_string("hello", "not_found") << std::endl;
9696
return 0;
9797
}
9898
```

0 commit comments

Comments
 (0)