Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in / Register
Toggle navigation
F
flatbuffers
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Packages
Packages
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
submodule
flatbuffers
Commits
cf7e4b02
Commit
cf7e4b02
authored
Jun 08, 2016
by
Antoine Descamps
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix typo
"your platform can't handling..." => "your platform can't handle"
parent
e92ae519
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
3 deletions
+3
-3
FlatbufferBuilder.php
php/FlatbufferBuilder.php
+3
-3
No files found.
php/FlatbufferBuilder.php
View file @
cf7e4b02
...
...
@@ -233,7 +233,7 @@ class FlatbufferBuilder
public
function
putUint
(
$x
)
{
if
(
$x
>
PHP_INT_MAX
)
{
throw
new
\InvalidArgumentException
(
"your platform can't handl
ing
uint correctly. use 64bit machine."
);
throw
new
\InvalidArgumentException
(
"your platform can't handl
e
uint correctly. use 64bit machine."
);
}
$this
->
bb
->
putUint
(
$this
->
space
-=
4
,
$x
);
...
...
@@ -245,7 +245,7 @@ class FlatbufferBuilder
public
function
putLong
(
$x
)
{
if
(
$x
>
PHP_INT_MAX
)
{
throw
new
\InvalidArgumentException
(
"your platform can't handl
ing
long correctly. use 64bit machine."
);
throw
new
\InvalidArgumentException
(
"your platform can't handl
e
long correctly. use 64bit machine."
);
}
$this
->
bb
->
putLong
(
$this
->
space
-=
8
,
$x
);
...
...
@@ -257,7 +257,7 @@ class FlatbufferBuilder
public
function
putUlong
(
$x
)
{
if
(
$x
>
PHP_INT_MAX
)
{
throw
new
\InvalidArgumentException
(
"your platform can't handl
ing
ulong correctly. this is php limitations. please wait extension release."
);
throw
new
\InvalidArgumentException
(
"your platform can't handl
e
ulong correctly. this is php limitations. please wait extension release."
);
}
$this
->
bb
->
putUlong
(
$this
->
space
-=
8
,
$x
);
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment