mirror of
https://bitbucket.org/chromiumembedded/cef
synced 2025-02-25 08:27:41 +01:00
Fix Linux/OS-X compile errors (issue #751).
git-svn-id: https://chromiumembedded.googlecode.com/svn/trunk@898 5089003a-bbd8-11dd-ad1f-f1f9622dbc98
This commit is contained in:
parent
d7493c57a1
commit
cd87a0b38a
@ -14,7 +14,7 @@
|
||||
'<!(python ../chrome/tools/build/version.py -f ../chrome/VERSION -t "1<(revision).@BUILD_HI@.@BUILD_LO@" -e "BUILD_HI=int(BUILD)/256" -e "BUILD_LO=int(BUILD)%256")',
|
||||
},
|
||||
'conditions': [
|
||||
[ 'os_posix==1 and OS!="mac" and OS!="android" and gcc_version==46', {
|
||||
[ 'os_posix==1 and OS!="mac" and OS!="android" and gcc_version>=46', {
|
||||
'target_defaults': {
|
||||
# Disable warnings about c++0x compatibility, as some names (such
|
||||
# as nullptr) conflict with upcoming c++0x types.
|
||||
|
@ -507,8 +507,8 @@ class CefTime : public CefStructBase<CefTimeTraits> {
|
||||
}
|
||||
|
||||
// Return the delta between this object and |other| in milliseconds.
|
||||
int64 Delta(const CefTime& other) {
|
||||
int64 delta = 0;
|
||||
long long Delta(const CefTime& other) {
|
||||
long long delta = 0;
|
||||
cef_time_delta(this, &other, &delta);
|
||||
return delta;
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user