Moving the Result.h include out of Candidate.h
This commit is contained in:
parent
04991d874d
commit
fc3bc60fae
@ -17,6 +17,7 @@
|
||||
|
||||
#include "standard.h"
|
||||
#include "Candidate.h"
|
||||
#include "Result.h"
|
||||
#include <cctype>
|
||||
#include <boost/algorithm/string.hpp>
|
||||
|
||||
|
@ -18,9 +18,7 @@
|
||||
#ifndef CANDIDATE_H_R5LZH6AC
|
||||
#define CANDIDATE_H_R5LZH6AC
|
||||
|
||||
// TODO can be moved to cpp?
|
||||
#include "LetterNode.h"
|
||||
#include "Result.h"
|
||||
|
||||
#include <boost/scoped_ptr.hpp>
|
||||
#include <boost/utility.hpp>
|
||||
@ -31,6 +29,8 @@
|
||||
namespace YouCompleteMe
|
||||
{
|
||||
|
||||
class Result;
|
||||
|
||||
typedef std::bitset< NUM_LETTERS > Bitset;
|
||||
|
||||
Bitset LetterBitsetFromString( const std::string &text );
|
||||
|
@ -17,6 +17,7 @@
|
||||
|
||||
#include "ClangCompleter.h"
|
||||
#include "exceptions.h"
|
||||
#include "Result.h"
|
||||
#include "Candidate.h"
|
||||
#include "TranslationUnit.h"
|
||||
#include "standard.h"
|
||||
|
@ -19,6 +19,7 @@
|
||||
#include "standard.h"
|
||||
#include "CandidateRepository.h"
|
||||
#include "Candidate.h"
|
||||
#include "Result.h"
|
||||
#include "Utils.h"
|
||||
#include "IdentifierUtils.h"
|
||||
|
||||
|
@ -17,6 +17,7 @@
|
||||
|
||||
#include <gtest/gtest.h>
|
||||
#include "Candidate.h"
|
||||
#include "Result.h"
|
||||
|
||||
namespace YouCompleteMe
|
||||
{
|
||||
|
Loading…
Reference in New Issue
Block a user