Skip to content

Commit a3fb05a

Browse files
authored
Apply Test from @pcanal
1 parent 7dd34ea commit a3fb05a

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

core/base/inc/TObject.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -180,10 +180,10 @@ class TObject {
180180
#pragma GCC diagnostic ignored "-Woverloaded-virtual"
181181
#endif
182182
/// \deprecated Please override the `Long64_t` overload instead of the `Int_t` version.
183-
[[deprecated]] virtual Int_t Write(const char *name, Int_t option, Int_t bufsize) final
183+
[[deprecated]] virtual Long64_t Write(const char *name, Int_t option, Int_t bufsize) final
184184
{ return Write(name, option, (Long64_t)bufsize); }
185185
/// \deprecated Please override the `Long64_t` overload instead of the `Int_t` version.
186-
[[deprecated]] virtual Int_t Write(const char *name, Int_t option, Int_t bufsize) const final
186+
[[deprecated]] virtual Long64_t Write(const char *name, Int_t option, Int_t bufsize) const final
187187
{ return Write(name, option, (Long64_t)bufsize); }
188188
#ifdef __clang__
189189
#pragma clang diagnostic pop

0 commit comments

Comments
 (0)