mirror of
https://github.com/claunia/SabreTools.git
synced 2025-12-16 19:14:27 +00:00
[xxHash] Fix xxHash not being found
This commit is contained in:
@@ -29,10 +29,14 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|||||||
*/
|
*/
|
||||||
|
|
||||||
using System;
|
using System;
|
||||||
|
using System.Collections.Generic;
|
||||||
|
using System.Linq;
|
||||||
|
using System.Text;
|
||||||
|
using System.Threading.Tasks;
|
||||||
|
|
||||||
namespace xxHashSharp
|
namespace SabreTools.Helper.External
|
||||||
{
|
{
|
||||||
public class xxHash
|
class xxHash
|
||||||
{
|
{
|
||||||
public struct XXH_State
|
public struct XXH_State
|
||||||
{
|
{
|
||||||
@@ -247,6 +251,5 @@ namespace xxHashSharp
|
|||||||
{
|
{
|
||||||
return (value << count) | (value >> (32 - count));
|
return (value << count) | (value >> (32 - count));
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -128,7 +128,7 @@
|
|||||||
<Compile Include="External\NaturalSort\NaturalReversedComparer.cs" />
|
<Compile Include="External\NaturalSort\NaturalReversedComparer.cs" />
|
||||||
<Compile Include="External\OptimizedCRC.cs" />
|
<Compile Include="External\OptimizedCRC.cs" />
|
||||||
<Compile Include="External\Traverse.cs" />
|
<Compile Include="External\Traverse.cs" />
|
||||||
<Compile Include="External\xxHash.cs" />
|
<Compile Include="External\xxHash\xxHash.cs" />
|
||||||
<Compile Include="External\Zlib\CRC32.cs" />
|
<Compile Include="External\Zlib\CRC32.cs" />
|
||||||
<Compile Include="External\Zlib\Deflate.cs" />
|
<Compile Include="External\Zlib\Deflate.cs" />
|
||||||
<Compile Include="External\Zlib\DeflateStream.cs" />
|
<Compile Include="External\Zlib\DeflateStream.cs" />
|
||||||
|
|||||||
@@ -7,6 +7,7 @@ using System.Xml.Schema;
|
|||||||
|
|
||||||
using SabreTools.Helper.Data;
|
using SabreTools.Helper.Data;
|
||||||
using SabreTools.Helper.Dats;
|
using SabreTools.Helper.Dats;
|
||||||
|
using SabreTools.Helper.External;
|
||||||
using SabreTools.Helper.Skippers;
|
using SabreTools.Helper.Skippers;
|
||||||
|
|
||||||
#if MONO
|
#if MONO
|
||||||
@@ -30,7 +31,6 @@ using StreamReader = System.IO.StreamReader;
|
|||||||
#endif
|
#endif
|
||||||
using NaturalSort;
|
using NaturalSort;
|
||||||
using OCRC;
|
using OCRC;
|
||||||
using xxHashSharp;
|
|
||||||
|
|
||||||
namespace SabreTools.Helper.Tools
|
namespace SabreTools.Helper.Tools
|
||||||
{
|
{
|
||||||
|
|||||||
Reference in New Issue
Block a user