[Groonga-commit] groonga/grnxx at 4f5ba2c [master] Update dummy files.

Back to archive index

susumu.yata null+****@clear*****
Wed Jun 5 10:48:50 JST 2013


susumu.yata	2013-06-05 10:48:50 +0900 (Wed, 05 Jun 2013)

  New Revision: 4f5ba2c1037a16235967ec87304e18eb5d4b97b1
  https://github.com/groonga/grnxx/commit/4f5ba2c1037a16235967ec87304e18eb5d4b97b1

  Message:
    Update dummy files.

  Copied files:
    lib/grnxx/map/array_map/dummy.hpp
      (from lib/grnxx/map/array_map/dummy.cpp)
    lib/grnxx/map/hash_table/dummy.hpp
      (from lib/grnxx/map/array_map/dummy.cpp)
  Modified files:
    lib/grnxx/alpha/Makefile.am
    lib/grnxx/map/array_map/Makefile.am
    lib/grnxx/map/array_map/dummy.cpp
    lib/grnxx/map/hash_table/Makefile.am
    lib/grnxx/map/hash_table/dummy.cpp
  Renamed files:
    lib/grnxx/alpha/dummy.cpp
      (from lib/grnxx/alpha/sample.cpp)
    lib/grnxx/alpha/dummy.hpp
      (from lib/grnxx/alpha/sample.hpp)

  Modified: lib/grnxx/alpha/Makefile.am (+4 -4)
===================================================================
--- lib/grnxx/alpha/Makefile.am    2013-06-05 10:36:58 +0900 (779f467)
+++ lib/grnxx/alpha/Makefile.am    2013-06-05 10:48:50 +0900 (ab734ad)
@@ -9,12 +9,12 @@ libgrnxx_alpha_la_LDFLAGS = @AM_LTLDFLAGS@
 
 libgrnxx_alpha_la_SOURCES =		\
 	double_array.cpp		\
-	map.cpp				\
-	sample.cpp
+	dummy.cpp			\
+	map.cpp
 
 libgrnxx_alpha_includedir = ${includedir}/grnxx/alpha
 libgrnxx_alpha_include_HEADERS =	\
 	double_array.hpp		\
+	dummy.hpp			\
 	map.hpp				\
-	map_range.hpp			\
-	sample.hpp
+	map_range.hpp

  Renamed: lib/grnxx/alpha/dummy.cpp (+2 -2) 91%
===================================================================
--- lib/grnxx/alpha/sample.cpp    2013-06-05 10:36:58 +0900 (976aae2)
+++ lib/grnxx/alpha/dummy.cpp    2013-06-05 10:48:50 +0900 (ca66023)
@@ -1,5 +1,5 @@
 /*
-  Copyright (C) 2012  Brazil, Inc.
+  Copyright (C) 2012-2013  Brazil, Inc.
 
   This library is free software; you can redistribute it and/or
   modify it under the terms of the GNU Lesser General Public
@@ -15,7 +15,7 @@
   License along with this library; if not, write to the Free Software
   Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA
 */
-#include "grnxx/alpha/sample.hpp"
+#include "grnxx/alpha/dummy.hpp"
 
 namespace grnxx {
 namespace alpha {

  Renamed: lib/grnxx/alpha/dummy.hpp (+6 -4) 83%
===================================================================
--- lib/grnxx/alpha/sample.hpp    2013-06-05 10:36:58 +0900 (dac3ecb)
+++ lib/grnxx/alpha/dummy.hpp    2013-06-05 10:48:50 +0900 (e398c83)
@@ -1,5 +1,5 @@
 /*
-  Copyright (C) 2012  Brazil, Inc.
+  Copyright (C) 2012-2013  Brazil, Inc.
 
   This library is free software; you can redistribute it and/or
   modify it under the terms of the GNU Lesser General Public
@@ -15,8 +15,10 @@
   License along with this library; if not, write to the Free Software
   Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA
 */
-#ifndef GRNXX_ALPHA_SAMPLE_HPP
-#define GRNXX_ALPHA_SAMPLE_HPP
+#ifndef GRNXX_ALPHA_DUMMY_HPP
+#define GRNXX_ALPHA_DUMMY_HPP
+
+#include "grnxx/features.hpp"
 
 namespace grnxx {
 namespace alpha {
@@ -24,4 +26,4 @@ namespace alpha {
 }  // namespace alpha
 }  // namespace grnxx
 
-#endif  // GRNXX_ALPHA_SAMPLE_HPP
+#endif  // GRNXX_ALPHA_DUMMY_HPP

  Modified: lib/grnxx/map/array_map/Makefile.am (+1 -0)
===================================================================
--- lib/grnxx/map/array_map/Makefile.am    2013-06-05 10:36:58 +0900 (2148059)
+++ lib/grnxx/map/array_map/Makefile.am    2013-06-05 10:48:50 +0900 (865e8f4)
@@ -8,4 +8,5 @@ libgrnxx_map_array_map_la_SOURCES =		\
 libgrnxx_map_array_map_includedir = ${includedir}/grnxx/map/array_map
 libgrnxx_map_array_map_include_HEADERS =	\
 	bit_array.hpp				\
+	dummy.hpp				\
 	key_array.hpp

  Modified: lib/grnxx/map/array_map/dummy.cpp (+3 -1)
===================================================================
--- lib/grnxx/map/array_map/dummy.cpp    2013-06-05 10:36:58 +0900 (4a29140)
+++ lib/grnxx/map/array_map/dummy.cpp    2013-06-05 10:48:50 +0900 (1df8db3)
@@ -1,5 +1,5 @@
 /*
-  Copyright (C) 2013  Brazil, Inc.
+  Copyright (C) 2012-2013  Brazil, Inc.
 
   This library is free software; you can redistribute it and/or
   modify it under the terms of the GNU Lesser General Public
@@ -15,6 +15,8 @@
   License along with this library; if not, write to the Free Software
   Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA
 */
+#include "grnxx/map/array_map/dummy.hpp"
+
 #include "grnxx/map/array_map/bit_array.hpp"
 #include "grnxx/map/array_map/key_array.hpp"
 

  Copied: lib/grnxx/map/array_map/dummy.hpp (+7 -3) 81%
===================================================================
--- lib/grnxx/map/array_map/dummy.cpp    2013-06-05 10:36:58 +0900 (4a29140)
+++ lib/grnxx/map/array_map/dummy.hpp    2013-06-05 10:48:50 +0900 (9fd5b99)
@@ -1,5 +1,5 @@
 /*
-  Copyright (C) 2013  Brazil, Inc.
+  Copyright (C) 2012-2013  Brazil, Inc.
 
   This library is free software; you can redistribute it and/or
   modify it under the terms of the GNU Lesser General Public
@@ -15,8 +15,10 @@
   License along with this library; if not, write to the Free Software
   Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA
 */
-#include "grnxx/map/array_map/bit_array.hpp"
-#include "grnxx/map/array_map/key_array.hpp"
+#ifndef GRNXX_MAP_ARRAY_MAP_DUMMY_HPP
+#define GRNXX_MAP_ARRAY_MAP_DUMMY_HPP
+
+#include "grnxx/features.hpp"
 
 namespace grnxx {
 namespace map {
@@ -25,3 +27,5 @@ namespace array_map {
 }  // namespace array_map
 }  // namespace map
 }  // namespace grnxx
+
+#endif  // GRNXX_MAP_ARRAY_MAP_DUMMY_HPP

  Modified: lib/grnxx/map/hash_table/Makefile.am (+1 -0)
===================================================================
--- lib/grnxx/map/hash_table/Makefile.am    2013-06-05 10:36:58 +0900 (f0475af)
+++ lib/grnxx/map/hash_table/Makefile.am    2013-06-05 10:48:50 +0900 (a346c66)
@@ -8,6 +8,7 @@ libgrnxx_map_hash_table_la_SOURCES =	\
 libgrnxx_map_hash_table_includedir = ${includedir}/grnxx/map/hash_table
 libgrnxx_map_hash_table_include_HEADERS =	\
 	bit_array.hpp				\
+	dummy.hpp				\
 	hash.hpp				\
 	key_array.hpp				\
 	key_id_array.hpp			\

  Modified: lib/grnxx/map/hash_table/dummy.cpp (+3 -1)
===================================================================
--- lib/grnxx/map/hash_table/dummy.cpp    2013-06-05 10:36:58 +0900 (f7ac17d)
+++ lib/grnxx/map/hash_table/dummy.cpp    2013-06-05 10:48:50 +0900 (8caebe3)
@@ -1,5 +1,5 @@
 /*
-  Copyright (C) 2013  Brazil, Inc.
+  Copyright (C) 2012-2013  Brazil, Inc.
 
   This library is free software; you can redistribute it and/or
   modify it under the terms of the GNU Lesser General Public
@@ -15,6 +15,8 @@
   License along with this library; if not, write to the Free Software
   Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA
 */
+#include "grnxx/map/hash_table/dummy.hpp"
+
 #include "grnxx/map/hash_table/bit_array.hpp"
 #include "grnxx/map/hash_table/hash.hpp"
 #include "grnxx/map/hash_table/key_array.hpp"

  Copied: lib/grnxx/map/hash_table/dummy.hpp (+7 -3) 81%
===================================================================
--- lib/grnxx/map/array_map/dummy.cpp    2013-06-05 10:36:58 +0900 (4a29140)
+++ lib/grnxx/map/hash_table/dummy.hpp    2013-06-05 10:48:50 +0900 (e4b18d6)
@@ -1,5 +1,5 @@
 /*
-  Copyright (C) 2013  Brazil, Inc.
+  Copyright (C) 2012-2013  Brazil, Inc.
 
   This library is free software; you can redistribute it and/or
   modify it under the terms of the GNU Lesser General Public
@@ -15,8 +15,10 @@
   License along with this library; if not, write to the Free Software
   Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA
 */
-#include "grnxx/map/array_map/bit_array.hpp"
-#include "grnxx/map/array_map/key_array.hpp"
+#ifndef GRNXX_MAP_HASH_TABLE_DUMMY_HPP
+#define GRNXX_MAP_HASH_TABLE_DUMMY_HPP
+
+#include "grnxx/features.hpp"
 
 namespace grnxx {
 namespace map {
@@ -25,3 +27,5 @@ namespace array_map {
 }  // namespace array_map
 }  // namespace map
 }  // namespace grnxx
+
+#endif  // GRNXX_MAP_HASH_TABLE_DUMMY_HPP
-------------- next part --------------
HTML����������������������������...
Download 



More information about the Groonga-commit mailing list
Back to archive index