Skip to content

Commit fa414d1

Browse files
committed
PHP-1195: Remove Int32 and Int64 classess
Keeping these would force everyone to use them, which is not cool when the majority of users shouldn't have to
1 parent ef5afd9 commit fa414d1

File tree

5 files changed

+0
-232
lines changed

5 files changed

+0
-232
lines changed

config.m4

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -142,8 +142,6 @@ if test "$PHONGO" != "no"; then
142142
src/BSON/Type.c \
143143
src/BSON/Binary.c \
144144
src/BSON/DBRef.c \
145-
src/BSON/Int32.c \
146-
src/BSON/Int64.c \
147145
src/BSON/Javascript.c \
148146
src/BSON/MaxKey.c \
149147
src/BSON/MinKey.c \

php_phongo.c

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1312,8 +1312,6 @@ PHP_MINIT_FUNCTION(phongo)
13121312
PHP_MINIT(Type)(INIT_FUNC_ARGS_PASSTHRU);
13131313
PHP_MINIT(Binary)(INIT_FUNC_ARGS_PASSTHRU);
13141314
PHP_MINIT(DBRef)(INIT_FUNC_ARGS_PASSTHRU);
1315-
PHP_MINIT(Int32)(INIT_FUNC_ARGS_PASSTHRU);
1316-
PHP_MINIT(Int64)(INIT_FUNC_ARGS_PASSTHRU);
13171315
PHP_MINIT(Javascript)(INIT_FUNC_ARGS_PASSTHRU);
13181316
PHP_MINIT(MaxKey)(INIT_FUNC_ARGS_PASSTHRU);
13191317
PHP_MINIT(MinKey)(INIT_FUNC_ARGS_PASSTHRU);

php_phongo_classes.h

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -228,8 +228,6 @@ PHP_MINIT_FUNCTION(WriteResult);
228228
PHP_MINIT_FUNCTION(Type);
229229
PHP_MINIT_FUNCTION(Binary);
230230
PHP_MINIT_FUNCTION(DBRef);
231-
PHP_MINIT_FUNCTION(Int32);
232-
PHP_MINIT_FUNCTION(Int64);
233231
PHP_MINIT_FUNCTION(Javascript);
234232
PHP_MINIT_FUNCTION(MaxKey);
235233
PHP_MINIT_FUNCTION(MinKey);

src/BSON/Int32.c

Lines changed: 0 additions & 113 deletions
This file was deleted.

src/BSON/Int64.c

Lines changed: 0 additions & 113 deletions
This file was deleted.

0 commit comments

Comments
 (0)