Skip to content
This repository has been archived by the owner on Oct 23, 2024. It is now read-only.

Commit

Permalink
Apparently the convention is to not put the _H in header guards
Browse files Browse the repository at this point in the history
git-svn-id: file:///dev/shm/somefilter.svn@292 e102df66-1e2e-11dd-9b44-c24451a4db5e
  • Loading branch information
kpu committed Sep 8, 2010
1 parent fc22447 commit d13ef9c
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 9 deletions.
6 changes: 3 additions & 3 deletions util/murmur_hash.hh
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
#ifndef UTIL_MURMUR_HASH_H__
#define UTIL_MURMUR_HASH_H__
#ifndef UTIL_MURMUR_HASH__
#define UTIL_MURMUR_HASH__
#include <stdint.h>

uint64_t MurmurHash64A (const void * key, int len, unsigned int seed);
uint64_t MurmurHash64B (const void * key, int len, unsigned int seed);

#endif // UTIL_MURMUR_HASH_H__
#endif // UTIL_MURMUR_HASH__
6 changes: 3 additions & 3 deletions util/scoped.hh
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#ifndef UTIL_SCOPED_H__
#define UTIL_SCOPED_H__
#ifndef UTIL_SCOPED__
#define UTIL_SCOPED__

#include <boost/noncopyable.hpp>

Expand Down Expand Up @@ -80,4 +80,4 @@ class scoped_mmap : boost::noncopyable {

} // namespace util

#endif // UTIL_SCOPED_H__
#endif // UTIL_SCOPED__
6 changes: 3 additions & 3 deletions util/sorted_uniform.hh
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
#ifndef UTIL_SORTED_UNIFORM_H__
#define UTIL_SORTED_UNIFORM_H__
#ifndef UTIL_SORTED_UNIFORM__
#define UTIL_SORTED_UNIFORM__

#include <algorithm>
#include <cstddef>
Expand Down Expand Up @@ -100,4 +100,4 @@ template <class KeyT, class ValueT> class SortedUniformMap {

} // namespace util

#endif // UTIL_SORTED_UNIFORM_H__
#endif // UTIL_SORTED_UNIFORM__

0 comments on commit d13ef9c

Please sign in to comment.