[xxHash] Fix xxHash not being found

This commit is contained in:
Matt Nadareski
2017-03-17 13:12:01 -07:00
parent e4a0c844d6
commit 809b6aff14
3 changed files with 9 additions and 6 deletions

View File

@@ -29,10 +29,14 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
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
{
@@ -247,6 +251,5 @@ namespace xxHashSharp
{
return (value << count) | (value >> (32 - count));
}
}
}
}