Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions README/ReleaseNotes/v642/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -77,6 +77,7 @@ The `TMVA_SOFIE_GNN` tutorials have been migrated to this workflow and produce i
* The header `GLConstants.h` is no longer part of ROOT installed headers.
* The header `PosixThreadInc.h` is deprecated and will be removed after ROOT 6.44. Use instead `<ctime>` and `<cstdlib>`.
* The header `RStringView.h` deprecated in ROOT 6.14 will now emit warnings and will be fully removed after ROOT 6.44. Use `ROOT/RStringView.hxx` instead.
* The header `NetErrors.h` is an implementation detail, is deprecated and will be removed in ROOT 6.44. Use instead `TSocket` public interface.
* The header `snprintf.h` is deprecated (will emit warnings) and will be removed in ROOT 6.44. Use instead `<cstdio>`.
* The header `Strlen.h` is deprecated and will be removed in ROOT 6.44. Use `<cstring>` directly as a replacement. `NEED_STRING` macro should not be defined or an error will be raised.
* The header `Varargs.h` and the macro `R__VA_COPY` are deprecated and will be removed in ROOT 6.46, use `<cstdarg>` instead.
Expand Down
4 changes: 4 additions & 0 deletions net/net/inc/NetErrors.h
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,10 @@
#define ROOT_NetErrors


#if !defined(ROOT_NetErrors_cxx) && !defined(G__DICTIONARY)
#warning "This header is deprecated and will be removed from the public interface in ROOT 6.44. Use instead TSocket public interface."
#endif

//////////////////////////////////////////////////////////////////////////
// //
// NetErrors //
Expand Down
1 change: 1 addition & 0 deletions net/net/src/NetErrors.cxx
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@
// //
//////////////////////////////////////////////////////////////////////////

#define ROOT_NetErrors_cxx
#include "NetErrors.h"

// Must match order of ERootdErrors enum in NetErrors.h
Expand Down
1 change: 1 addition & 0 deletions net/net/src/TSocket.cxx
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@ TUnixSystem or TWinNTSystem).

#include "Bytes.h"
#include "Compression.h"
#define ROOT_NetErrors_cxx
#include "NetErrors.h"
#include "TError.h"
#include "TMessage.h"
Expand Down
1 change: 1 addition & 0 deletions net/net/src/TUDPSocket.cxx
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@ TUnixSystem or TWinNTSystem).

#include "Bytes.h"
#include "Compression.h"
#define ROOT_NetErrors_cxx
#include "NetErrors.h"
#include "TError.h"
#include "TMessage.h"
Expand Down
Loading