Skip to content

Commit

Permalink
Resolve some small compilation complaints
Browse files Browse the repository at this point in the history
  • Loading branch information
genevb authored and pcanal committed Jun 19, 2022
1 parent 821ad1a commit 468a32f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions core/zip/src/Compression.cxx
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@

#include "Compression.h"
#include <stdexcept>
#include <string>
#include "PrecisionCascadeConfigArrayContent.h"

namespace ROOT {
Expand Down
2 changes: 1 addition & 1 deletion core/zip/src/RZip.cxx
Original file line number Diff line number Diff line change
Expand Up @@ -131,7 +131,7 @@ void R__zipPrecisionCascade(int *srcsize, char *src, int *tgtsize, char **tgts,
return;
}

auto content = reinterpret_cast<PrecisionCascadeConfigArrayContent*>(fConfigArray);
auto content = reinterpret_cast<ROOT::Internal::PrecisionCascadeConfigArrayContent*>(configarray);
(void) configsize;
assert(content && (content->SizeOf() == configsize));
Int_t *cxlevels = content->GetLevels(); // This an array of size `content->fLen`
Expand Down

0 comments on commit 468a32f

Please sign in to comment.