Commit e77056e3 authored by Bolea Sanchez, Vicente Adolfo's avatar Bolea Sanchez, Vicente Adolfo
Browse files

fix: make changes from #4160 abi compat

parent f839acd3
Loading
Loading
Loading
Loading
+3 −3
Original line number Diff line number Diff line
@@ -172,10 +172,10 @@ public:
    MACRO(StatsBlockSize, SizeBytes, size_t, DefaultStatsBlockSize)                                \
    MACRO(Threads, UInt, unsigned int, 0)                                                          \
    MACRO(UseOneTimeAttributes, Bool, bool, true)                                                  \
    MACRO(FlattenSteps, Bool, bool, false)                                                         \
    MACRO(IgnoreFlattenSteps, Bool, bool, false)                                                   \
    MACRO(RemoteDataPath, String, std::string, "")                                                 \
    MACRO(MaxOpenFilesAtOnce, UInt, unsigned int, UINT_MAX)
    MACRO(MaxOpenFilesAtOnce, UInt, unsigned int, UINT_MAX)                                        \
    MACRO(FlattenSteps, Bool, bool, false)                                                         \
    MACRO(IgnoreFlattenSteps, Bool, bool, false)

    struct BP5Params
    {
+6 −0
Original line number Diff line number Diff line
@@ -1996,6 +1996,12 @@ int BP5Deserializer::FindOffset(size_t Dims, const size_t *Size, const size_t *I
 * *******************************
 */

BP5Deserializer::BP5Deserializer(bool WriterIsRowMajor, bool ReaderIsRowMajor,
                                 bool RandomAccessMode)
: BP5Deserializer::BP5Deserializer(WriterIsRowMajor, ReaderIsRowMajor, RandomAccessMode, false)
{
}

BP5Deserializer::BP5Deserializer(bool WriterIsRowMajor, bool ReaderIsRowMajor,
                                 bool RandomAccessMode, bool FlattenSteps)
: m_WriterIsRowMajor{WriterIsRowMajor}, m_ReaderIsRowMajor{ReaderIsRowMajor},
+3 −2
Original line number Diff line number Diff line
@@ -35,8 +35,9 @@ class BP5Deserializer : virtual public BP5Base
{

public:
    BP5Deserializer(bool WriterIsRowMajor, bool ReaderIsRowMajor, bool RandomAccessMode = false,
                    bool FlattenSteps = false);
    BP5Deserializer(bool WriterIsRowMajor, bool ReaderIsRowMajor, bool RandomAccessMode = false);
    BP5Deserializer(bool WriterIsRowMajor, bool ReaderIsRowMajor, bool RandomAccessMode,
                    bool FlattenSteps);

    ~BP5Deserializer();