Boost logo

Boost-Commit :

Subject: [Boost-commit] svn:boost r72182 - in sandbox/bloom_filter/trunk: include include/murmurhash3 lib libs test
From: cpp.cabrera_at_[hidden]
Date: 2011-05-26 09:25:19


Author: alejandro
Date: 2011-05-26 09:25:18 EDT (Thu, 26 May 2011)
New Revision: 72182
URL: http://svn.boost.org/trac/boost/changeset/72182

Log:
Reorganizing. Removed unnecessary folders.

Added:
   sandbox/bloom_filter/trunk/include/murmurhash3/murmurhash3.h (contents, props changed)
Removed:
   sandbox/bloom_filter/trunk/include/murmurhash3/MurmurHash3.h
   sandbox/bloom_filter/trunk/lib/
   sandbox/bloom_filter/trunk/libs/
Text files modified:
   sandbox/bloom_filter/trunk/include/hash.hpp | 2 +-
   sandbox/bloom_filter/trunk/test/makefile | 2 +-
   sandbox/bloom_filter/trunk/test/murmurhash3.cpp | 2 +-
   3 files changed, 3 insertions(+), 3 deletions(-)

Modified: sandbox/bloom_filter/trunk/include/hash.hpp
==============================================================================
--- sandbox/bloom_filter/trunk/include/hash.hpp (original)
+++ sandbox/bloom_filter/trunk/include/hash.hpp 2011-05-26 09:25:18 EDT (Thu, 26 May 2011)
@@ -8,7 +8,7 @@
  * \todo Provide 64-bit implementation of murmurhash3.
  */
 #include <cstdint>
-#include <murmurhash3/MurmurHash3.h>
+#include <murmurhash3/murmurhash3.h>
 
 template <typename UnsignedIntT>
 inline UnsignedIntT rotl(const UnsignedIntT x, uint8_t r)

Deleted: sandbox/bloom_filter/trunk/include/murmurhash3/MurmurHash3.h
==============================================================================
--- sandbox/bloom_filter/trunk/include/murmurhash3/MurmurHash3.h 2011-05-26 09:25:18 EDT (Thu, 26 May 2011)
+++ (empty file)
@@ -1,37 +0,0 @@
-//-----------------------------------------------------------------------------
-// MurmurHash3 was written by Austin Appleby, and is placed in the public
-// domain. The author hereby disclaims copyright to this source code.
-
-#ifndef _MURMURHASH3_H_
-#define _MURMURHASH3_H_
-
-//-----------------------------------------------------------------------------
-// Platform-specific functions and macros
-
-// Microsoft Visual Studio
-
-#if defined(_MSC_VER)
-
-typedef unsigned char uint8_t;
-typedef unsigned long uint32_t;
-typedef unsigned __int64 uint64_t;
-
-// Other compilers
-
-#else // defined(_MSC_VER)
-
-#include <stdint.h>
-
-#endif // !defined(_MSC_VER)
-
-//-----------------------------------------------------------------------------
-
-void MurmurHash3_x86_32 ( const void * key, int len, uint32_t seed, void * out );
-
-void MurmurHash3_x86_128 ( const void * key, int len, uint32_t seed, void * out );
-
-void MurmurHash3_x64_128 ( const void * key, int len, uint32_t seed, void * out );
-
-//-----------------------------------------------------------------------------
-
-#endif // _MURMURHASH3_H_

Added: sandbox/bloom_filter/trunk/include/murmurhash3/murmurhash3.h
==============================================================================
--- (empty file)
+++ sandbox/bloom_filter/trunk/include/murmurhash3/murmurhash3.h 2011-05-26 09:25:18 EDT (Thu, 26 May 2011)
@@ -0,0 +1,37 @@
+//-----------------------------------------------------------------------------
+// MurmurHash3 was written by Austin Appleby, and is placed in the public
+// domain. The author hereby disclaims copyright to this source code.
+
+#ifndef _MURMURHASH3_H_
+#define _MURMURHASH3_H_
+
+//-----------------------------------------------------------------------------
+// Platform-specific functions and macros
+
+// Microsoft Visual Studio
+
+#if defined(_MSC_VER)
+
+typedef unsigned char uint8_t;
+typedef unsigned long uint32_t;
+typedef unsigned __int64 uint64_t;
+
+// Other compilers
+
+#else // defined(_MSC_VER)
+
+#include <stdint.h>
+
+#endif // !defined(_MSC_VER)
+
+//-----------------------------------------------------------------------------
+
+void MurmurHash3_x86_32 ( const void * key, int len, uint32_t seed, void * out );
+
+void MurmurHash3_x86_128 ( const void * key, int len, uint32_t seed, void * out );
+
+void MurmurHash3_x64_128 ( const void * key, int len, uint32_t seed, void * out );
+
+//-----------------------------------------------------------------------------
+
+#endif // _MURMURHASH3_H_

Modified: sandbox/bloom_filter/trunk/test/makefile
==============================================================================
--- sandbox/bloom_filter/trunk/test/makefile (original)
+++ sandbox/bloom_filter/trunk/test/makefile 2011-05-26 09:25:18 EDT (Thu, 26 May 2011)
@@ -1,7 +1,7 @@
 CXXFLAGS := -Wall -Wextra -pedantic -std=c++0x -O3 -g
 LD_FLAGS := -lpthread -lboost_unit_test_framework
 INCLUDE_DIR := ../include
-INCLUDES := -I$(INCLUDE_DIR) -I$(INCLUDE_DIR)/murmurhash3
+INCLUDES := -I$(INCLUDE_DIR)
 EXES := boost_test
 all : $(EXES)
 

Modified: sandbox/bloom_filter/trunk/test/murmurhash3.cpp
==============================================================================
--- sandbox/bloom_filter/trunk/test/murmurhash3.cpp (original)
+++ sandbox/bloom_filter/trunk/test/murmurhash3.cpp 2011-05-26 09:25:18 EDT (Thu, 26 May 2011)
@@ -7,7 +7,7 @@
 // compile and run any of them on any platform, but your performance with the
 // non-native version will be less than optimal.
 
-#include "MurmurHash3.h"
+#include <murmurhash3/murmurhash3.h>
 
 //-----------------------------------------------------------------------------
 // Platform-specific functions and macros


Boost-Commit list run by bdawes at acm.org, david.abrahams at rcn.com, gregod at cs.rpi.edu, cpdaniel at pacbell.net, john at johnmaddock.co.uk