Skip to content

Commit

Permalink
comment out more C++ bits
Browse files Browse the repository at this point in the history
  • Loading branch information
adamhathcock committed Nov 15, 2023
1 parent d28a278 commit dc89c88
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 6 deletions.
Original file line number Diff line number Diff line change
@@ -1,10 +1,11 @@
using uint32 = System.UInt32;
#if !Rar2017_64bit

/*#if !Rar2017_64bit
#else
using nint = System.Int64;
using nuint = System.UInt64;
using size_t = System.UInt64;
#endif
#endif*/


namespace SharpCompress.Compressors.Rar.UnpackV2017;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,12 +1,13 @@
using System;
using static SharpCompress.Compressors.Rar.UnpackV2017.PackDef;
using static SharpCompress.Compressors.Rar.UnpackV2017.Unpack.Unpack20Local;
#if !Rar2017_64bit

/*#if !Rar2017_64bit
#else
using nint = System.Int64;
using nuint = System.UInt64;
using size_t = System.UInt64;
#endif
#endif*/


namespace SharpCompress.Compressors.Rar.UnpackV2017;
Expand Down
Original file line number Diff line number Diff line change
@@ -1,10 +1,11 @@
using static SharpCompress.Compressors.Rar.UnpackV2017.PackDef;
#if !Rar2017_64bit

/*#if !Rar2017_64bit
#else
using nint = System.Int64;
using nuint = System.UInt64;
using size_t = System.UInt64;
#endif
#endif*/


namespace SharpCompress.Compressors.Rar.UnpackV2017;
Expand Down

0 comments on commit dc89c88

Please sign in to comment.