ccls/src/clang_format.h
2017-12-31 19:41:47 -08:00

19 lines
310 B
C++

#pragma once
#if USE_CLANG_CXX
#include "language_server_api.h"
#include "working_files.h"
#include <clang/Format/Format.h>
#include <vector>
std::vector<clang::tooling::Replacement> ClangFormatDocument(
WorkingFile* working_file,
int start,
int end,
lsFormattingOptions options);
#endif