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 @@ -69,6 +69,7 @@ Users are encouraged to export their models to ONNX and use the retained ONNX pa
* Support for the AIX operating system has been removed from the codebase. This support has not been tested since the late v5 releases and the LLVM JIT is not yet supporting AIX.
* The headers Htypes.h and Gtypes.h that were deprecated in ROOT 6.20 will now emit warnings and will be fully removed in ROOT 6.44.
* The header GLConstants.h is no longer part of ROOT installed headers.
* The header `RStringView.h` deprecated in ROOT 6.14 will now emit warnings and will be fully removed in ROOT 6.46. Use `ROOT/RStringView.hxx` instead.

## Build System

Expand Down
1 change: 0 additions & 1 deletion core/foundation/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,6 @@

set_property(TARGET Core APPEND PROPERTY DICT_HEADERS
ESTLType.h
RStringView.h
TClassEdit.h
TError.h
ThreadLocalStorage.h
Expand Down
2 changes: 1 addition & 1 deletion core/foundation/inc/RStringView.h
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,6 @@
* For the list of contributors see $ROOTSYS/README/CREDITS. *
*************************************************************************/

// this file is only kept for backwards compatibility reasons. ROOT/RStringView.hxx should be included instead.
#warning "This header is deprecated and will be removed in ROOT 6.46, use ROOT/RStringView.hxx instead"

#include <ROOT/RStringView.hxx>
Loading