Kouhei Sutou
null+****@clear*****
Thu Oct 4 10:39:24 JST 2012
Kouhei Sutou 2012-03-19 18:19:51 +0900 (Mon, 19 Mar 2012) New Revision: 0b2c39db6db1f63c482a56204b5a2858ea0d04e0 https://github.com/mroonga/mroonga/commit/0b2c39db6db1f63c482a56204b5a2858ea0d04e0 Log: Fix '*' position Modified files: lib/mrn_path_mapper.cpp Modified: lib/mrn_path_mapper.cpp (+3 -3) =================================================================== --- lib/mrn_path_mapper.cpp 2012-03-19 18:19:01 +0900 (f059b7f) +++ lib/mrn_path_mapper.cpp 2012-03-19 18:19:51 +0900 (8590bec) @@ -28,7 +28,7 @@ #include <string.h> namespace mrn { - PathMapper::PathMapper(const char *mysql_path) + PathMapper::PathMapper(const char* mysql_path) : mysql_path_(mysql_path) { db_path_[0] = '\0'; db_name_[0] = '\0'; @@ -40,7 +40,7 @@ namespace mrn { * "/tmp/mysql-test/var/tmp/mysqld.1/#sql27c5_1_0" ==> * "/tmp/mysql-test/var/tmp/mysqld.1/#sql27c5_1_0.mrn" */ - const char *PathMapper::db_path() { + const char* PathMapper::db_path() { if (db_path_[0] != '\0') { return db_path_; } @@ -65,7 +65,7 @@ namespace mrn { * "/tmp/mysql-test/var/tmp/mysqld.1/#sql27c5_1_0" ==> * "/tmp/mysql-test/var/tmp/mysqld.1/#sql27c5_1_0" */ - const char *PathMapper::db_name() { + const char* PathMapper::db_name() { if (db_name_[0] != '\0') { return db_name_; } -------------- next part -------------- HTML����������������������������...Download