Skip to content

Commit 9946ddf

Browse files
committed
Use override syntax for http classes
1 parent 9bbd4d5 commit 9946ddf

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

net/http/inc/THttpCallArg.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -250,7 +250,7 @@ class THttpCallArg : public TObject {
250250
AssignWSId();
251251
}
252252

253-
ClassDef(THttpCallArg, 0) // Arguments for single HTTP call
253+
ClassDefOverride(THttpCallArg, 0) // Arguments for single HTTP call
254254
};
255255

256256
#endif

net/http/inc/THttpEngine.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ class THttpEngine : public TNamed {
3939
/** Returns pointer to THttpServer associated with engine */
4040
THttpServer *GetServer() const { return fServer; }
4141

42-
ClassDef(THttpEngine, 0) // abstract class which should provide http-based protocol for server
42+
ClassDefOverride(THttpEngine, 0) // abstract class which should provide http-based protocol for server
4343
};
4444

4545
#endif

net/http/inc/THttpWSHandler.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -108,7 +108,7 @@ friend class THttpServer;
108108

109109
virtual Bool_t ProcessWS(THttpCallArg *arg) = 0;
110110

111-
ClassDef(THttpWSHandler, 0) // abstract class for handling websocket requests
111+
ClassDefOverride(THttpWSHandler, 0) // abstract class for handling websocket requests
112112
};
113113

114114
#endif

net/http/inc/TRootSnifferStore.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ class TRootSnifferStore : public TObject {
4545
Int_t GetResRestrict() const { return fResRestrict; }
4646
virtual Bool_t IsXml() const { return kFALSE; }
4747

48-
ClassDef(TRootSnifferStore, 0) // structure for results store of objects sniffer
48+
ClassDefOverride(TRootSnifferStore, 0) // structure for results store of objects sniffer
4949
};
5050

5151
// ========================================================================

0 commit comments

Comments
 (0)