File tree Expand file tree Collapse file tree 4 files changed +6
-5
lines changed Expand file tree Collapse file tree 4 files changed +6
-5
lines changed Original file line number Diff line number Diff line change @@ -73,7 +73,7 @@ class ClangdLSPServer : private ClangdServer::Callbacks,
7373 // / The destructor blocks on any outstanding background tasks.
7474 ~ClangdLSPServer ();
7575
76- ClangdLSPServer (const ClangdLSPServer& other) = default ;
76+ ClangdLSPServer (const ClangdLSPServer & other) = default ;
7777 ClangdLSPServer &operator =(const ClangdLSPServer &other) = default ;
7878
7979 // / Run LSP server loop, communicating with the Transport provided in the
Original file line number Diff line number Diff line change @@ -412,7 +412,8 @@ class PreambleThrottlerRequest {
412412 Throttler->release (ID);
413413 }
414414 PreambleThrottlerRequest (const PreambleThrottlerRequest &) = default ;
415- PreambleThrottlerRequest &operator =(const PreambleThrottlerRequest &) = default ;
415+ PreambleThrottlerRequest &
416+ operator =(const PreambleThrottlerRequest &) = default ;
416417
417418private:
418419 PreambleThrottler::RequestID ID;
Original file line number Diff line number Diff line change @@ -243,7 +243,7 @@ class TUScheduler {
243243 ~TUScheduler ();
244244
245245 TUScheduler (const TUScheduler &other) = default ;
246- TUScheduler& operator =(const TUScheduler& other) = default ;
246+ TUScheduler & operator =(const TUScheduler & other) = default ;
247247
248248 struct FileStats {
249249 std::size_t UsedBytesAST = 0 ;
Original file line number Diff line number Diff line change @@ -328,8 +328,8 @@ class Preprocessor {
328328 Preprocessor (const TokenStream &In, TokenStream &Out) : In(In), Out(Out) {}
329329 ~Preprocessor () { Out.finalize (); }
330330
331- Preprocessor (const Preprocessor& ) = default ; // Default copy constructor
332- Preprocessor& operator =(const Preprocessor& ) = default ; // Default copy assignment operator
331+ Preprocessor (const Preprocessor &other ) = default ;
332+ Preprocessor & operator =(const Preprocessor &other ) = default ;
333333
334334 void walk (const DirectiveTree &T) {
335335 for (const auto &C : T.Chunks )
You can’t perform that action at this time.
0 commit comments