Skip to content
Merged
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 @@ -76,6 +76,7 @@ The `TMVA_SOFIE_GNN` tutorials have been migrated to this workflow and produce i
* 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 `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 `Rstrstream.h` is deprecated and will be removed after ROOT 6.44, use instead `<sstream>`.

## Build System

Expand Down
2 changes: 2 additions & 0 deletions core/foundation/inc/Rstrstream.h
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,8 @@
#ifndef ROOT_Rstrstream
#define ROOT_Rstrstream

#warning "This header is deprecated and will be removed after ROOT 6.44, used instead <sstream>"

#include <ROOT/RConfig.hxx>

#if defined(R__ANSISTREAM)
Expand Down
8 changes: 4 additions & 4 deletions core/foundation/src/TClassEdit.cxx
Original file line number Diff line number Diff line change
Expand Up @@ -12,13 +12,15 @@
* For the list of contributors see $ROOTSYS/README/CREDITS. *
*************************************************************************/

#include "TClassEdit.h"
#include "TSpinLockGuard.h"

#include <cstdio>
#include <cstdlib>
#include <cassert>
#include <cstring>
#include "TClassEdit.h"
#include <cctype>
#include "Rstrstream.h"
#include <sstream>
#include <set>
#include <stack>
// for shared_ptr
Expand All @@ -27,8 +29,6 @@
#include <algorithm>
#include <string>

#include "TSpinLockGuard.h"

using std::string, std::string_view, std::vector, std::set;

namespace {
Expand Down
10 changes: 5 additions & 5 deletions core/rint/src/TTabCom.cxx
Original file line number Diff line number Diff line change
Expand Up @@ -121,10 +121,6 @@
// //
////////////////////////////////////////////////////////////////////////////

#include <cstdio>
#include <cassert>
#include <set>

#include "RConfigure.h"
#include "TTabCom.h"
#include "TClass.h"
Expand All @@ -145,9 +141,13 @@
#include "TMethodArg.h"
#include "TInterpreter.h"
#include "Riostream.h"
#include "Rstrstream.h"
#include "strlcpy.h"

#include <cstdio>
#include <cassert>
#include <set>
#include <sstream>

#define BUF_SIZE 1024 // must be smaller than/equal to fgLineBufSize in Getline.cxx and
// lineBufSize in cppcompleter.py
#define IfDebug(x) if(gDebug==TTabCom::kDebug) x
Expand Down
4 changes: 1 addition & 3 deletions tmva/tmva/src/GeneticPopulation.cxx
Original file line number Diff line number Diff line change
Expand Up @@ -29,16 +29,14 @@ Population definition for genetic algorithm.

*/

#include <algorithm>

#include "Rstrstream.h"
#include "TRandom3.h"
#include "TH1.h"

#include "TMVA/GeneticPopulation.h"
#include "TMVA/GeneticGenes.h"
#include "TMVA/MsgLogger.h"

#include <sstream>

using std::vector, std::ostream;

Expand Down
Loading