ccls/src/clang_format.h

19 lines
310 B
C
Raw Normal View History

#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