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 "CompileCommand.h"
#include "CompileCommands.h" #include "CompileCommands.h"
#include <iostream>
clang::CompileCommand:: clang::CompileCommand::
CompileCommand(int nth, clang::CompileCommands *commands) { CompileCommand(int nth, clang::CompileCommands *commands) {

1
src/CompileCommands.cc

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

1
src/Token.cc

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

1
src/Tokens.cc

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

1
src/TranslationUnit.h

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

Loading…
Cancel
Save