mirror of
https://github.com/MaskRay/ccls.git
synced 2024-11-26 17:41:58 +00:00
19 lines
310 B
C++
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
|