Skip to content

Commit 408c1a6

Browse files
16bit-ykikoclaude
andcommitted
style: remove section divider comments across src/
Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
1 parent 7a8dcd0 commit 408c1a6

File tree

3 files changed

+0
-10
lines changed

3 files changed

+0
-10
lines changed

src/server/protocol.h

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -103,7 +103,6 @@ struct BuildResult {
103103
eventide::serde::RawValue result_json; ///< Completion/SignatureHelp result
104104
};
105105

106-
// === Notifications ===
107106

108107
struct DocumentUpdateParams {
109108
std::string path;
@@ -120,7 +119,6 @@ struct EvictedParams {
120119

121120
} // namespace clice::worker
122121

123-
// === clice/ LSP Extension Types ===
124122

125123
namespace clice::ext {
126124

@@ -179,7 +177,6 @@ struct RequestTraits<clice::worker::BuildParams> {
179177
constexpr inline static std::string_view method = "clice/worker/build";
180178
};
181179

182-
// === Notifications ===
183180

184181
template <>
185182
struct NotificationTraits<clice::worker::DocumentUpdateParams> {

src/server/worker_pool.h

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -83,7 +83,6 @@ class WorkerPool {
8383
bool spawn_worker(const std::string& self_path, bool stateful, std::uint64_t memory_limit);
8484
};
8585

86-
// --- Template implementations ---------------------------------------------------
8786

8887
template <typename Params>
8988
RequestResult<Params> WorkerPool::send_stateful(std::uint32_t path_id,

src/syntax/dependency_graph.cpp

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -20,9 +20,7 @@ namespace clice {
2020

2121
namespace et = eventide;
2222

23-
// ============================================================================
2423
// DependencyGraph implementation
25-
// ============================================================================
2624

2725
void DependencyGraph::add_module(llvm::StringRef module_name, std::uint32_t path_id) {
2826
auto& ids = module_to_path[module_name];
@@ -205,9 +203,7 @@ std::vector<std::uint32_t> DependencyGraph::find_include_chain(std::uint32_t hos
205203
return chain;
206204
}
207205

208-
// ============================================================================
209206
// Wavefront BFS scanner — async implementation
210-
// ============================================================================
211207

212208
namespace {
213209

@@ -819,9 +815,7 @@ et::task<> scan_impl(CompilationDatabase& cdb,
819815

820816
} // namespace
821817

822-
// ============================================================================
823818
// Public sync entry point
824-
// ============================================================================
825819

826820
ScanReport scan_dependency_graph(CompilationDatabase& cdb,
827821
PathPool& path_pool,

0 commit comments

Comments
 (0)