You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@madlib.apache.org by ri...@apache.org on 2017/03/13 20:57:50 UTC

[28/50] [abbrv] incubator-madlib git commit: Fix headerguard for MallocAllocator

Fix headerguard for MallocAllocator

The headerguard for MallocAllocator is defining a different macro
than what it's testing for. Fix the defined macro to match the
check and filename.


Project: http://git-wip-us.apache.org/repos/asf/incubator-madlib/repo
Commit: http://git-wip-us.apache.org/repos/asf/incubator-madlib/commit/078ba9eb
Tree: http://git-wip-us.apache.org/repos/asf/incubator-madlib/tree/078ba9eb
Diff: http://git-wip-us.apache.org/repos/asf/incubator-madlib/diff/078ba9eb

Branch: refs/heads/latest_release
Commit: 078ba9eb8860f313a7d14e426decc39627a6043a
Parents: 153037a
Author: Daniel Gustafsson <da...@yesql.se>
Authored: Fri Feb 3 10:36:02 2017 +0100
Committer: Daniel Gustafsson <da...@yesql.se>
Committed: Fri Feb 3 10:36:02 2017 +0100

----------------------------------------------------------------------
 src/utils/MallocAllocator.hpp | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/incubator-madlib/blob/078ba9eb/src/utils/MallocAllocator.hpp
----------------------------------------------------------------------
diff --git a/src/utils/MallocAllocator.hpp b/src/utils/MallocAllocator.hpp
index 2c6ae83..5f245ba 100644
--- a/src/utils/MallocAllocator.hpp
+++ b/src/utils/MallocAllocator.hpp
@@ -5,7 +5,7 @@
  *//* ----------------------------------------------------------------------- */
 
 #ifndef MADLIB_MALLOC_ALLOCATOR_HPP
-#define MADLIB_NALLOC_ALLOCATOR_HPP
+#define MADLIB_MALLOC_ALLOCATOR_HPP
 
 namespace madlib {