Browse Source

Remove includes

merge-requests/37/head
Jørgen Lien Sellæg 11 years ago
parent
commit
6062380697
  1. 1
      src/CompileCommand.cc
  2. 1
      src/CompileCommands.cc
  3. 1
      src/Token.cc
  4. 1
      src/Tokens.cc
  5. 1
      src/TranslationUnit.h

1
src/CompileCommand.cc

@ -1,6 +1,5 @@
#include "CompileCommand.h"
#include "CompileCommands.h"
#include <iostream>
clang::CompileCommand::
CompileCommand(int nth, clang::CompileCommands *commands) {

1
src/CompileCommands.cc

@ -1,5 +1,4 @@
#include "CompileCommands.h"
#include <iostream>
clang::CompileCommands::
CompileCommands(const std::string &filename, CompilationDatabase *db) {

1
src/Token.cc

@ -1,5 +1,4 @@
#include "Token.h"
#include <iostream>
// // // // //
// Token //

1
src/Tokens.cc

@ -1,5 +1,4 @@
#include "Tokens.h"
#include <iostream>
clang::Tokens::Tokens(clang::TranslationUnit *tu, clang::SourceRange *range) {
clang_tokenize(tu->tu_,
range->range_,

1
src/TranslationUnit.h

@ -5,7 +5,6 @@
#include <vector>
#include <map>
#include <memory>
#include <iostream>
#include "Index.h"
namespace clang {

Loading…
Cancel
Save