File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -1763,7 +1763,7 @@ public:
17631763 std::uint16_t versionPatch);
17641764 void SetVersionForWriting ();
17651765
1766- void SetNTuple (const std::string_view name, const std::string_view description);
1766+ void SetNTuple (std::string_view name, std::string_view description);
17671767 // / Sets the `flag`-th bit of the feature flag to 1.
17681768 // / Note that `flag` itself is not a bitmask, just the bit index of the flag to enable.
17691769 void SetFeature (unsigned int flag);
Original file line number Diff line number Diff line change @@ -1093,8 +1093,7 @@ void ROOT::Internal::RNTupleDescriptorBuilder::SetVersionForWriting()
10931093 fDescriptor .fVersionPatch = RNTuple::kVersionPatch ;
10941094}
10951095
1096- void ROOT::Internal::RNTupleDescriptorBuilder::SetNTuple (const std::string_view name,
1097- const std::string_view description)
1096+ void ROOT::Internal::RNTupleDescriptorBuilder::SetNTuple (std::string_view name, std::string_view description)
10981097{
10991098 fDescriptor .fName = std::string (name);
11001099 fDescriptor .fDescription = std::string (description);
You can’t perform that action at this time.
0 commit comments