diff options
author | robertphillips@google.com <robertphillips@google.com@2bbb7eff-a529-9590-31e7-b0007b416f81> | 2012-05-14 16:33:36 +0000 |
---|---|---|
committer | robertphillips@google.com <robertphillips@google.com@2bbb7eff-a529-9590-31e7-b0007b416f81> | 2012-05-14 16:33:36 +0000 |
commit | 4debcac8c38cae17a01e697578719c60a068052f (patch) | |
tree | fe0f4e1b11fa773d8ce0eb446cb5912d8e055eea /src | |
parent | 59bc8d4fa725da2a6cec3526859c488b577d5cce (diff) |
Debug Windows compiler complaint fixes
http://codereview.appspot.com/6208055/
git-svn-id: http://skia.googlecode.com/svn/trunk@3924 2bbb7eff-a529-9590-31e7-b0007b416f81
Diffstat (limited to 'src')
-rw-r--r-- | src/gpu/gl/debug/GrFBBindableObj.cpp | 9 | ||||
-rw-r--r-- | src/gpu/gl/debug/GrRenderBufferObj.cpp | 9 | ||||
-rw-r--r-- | src/pdf/SkPDFDocument.cpp | 2 |
3 files changed, 1 insertions, 19 deletions
diff --git a/src/gpu/gl/debug/GrFBBindableObj.cpp b/src/gpu/gl/debug/GrFBBindableObj.cpp deleted file mode 100644 index dbab2d7397..0000000000 --- a/src/gpu/gl/debug/GrFBBindableObj.cpp +++ /dev/null @@ -1,9 +0,0 @@ - -/* - * Copyright 2012 Google Inc. - * - * Use of this source code is governed by a BSD-style license that can be - * found in the LICENSE file. - */ - -#include "GrFBBindableObj.h"
\ No newline at end of file diff --git a/src/gpu/gl/debug/GrRenderBufferObj.cpp b/src/gpu/gl/debug/GrRenderBufferObj.cpp deleted file mode 100644 index b7641ca948..0000000000 --- a/src/gpu/gl/debug/GrRenderBufferObj.cpp +++ /dev/null @@ -1,9 +0,0 @@ - -/* - * Copyright 2012 Google Inc. - * - * Use of this source code is governed by a BSD-style license that can be - * found in the LICENSE file. - */ - -#include "GrRenderBufferObj.h" diff --git a/src/pdf/SkPDFDocument.cpp b/src/pdf/SkPDFDocument.cpp index 74daf00738..3b9b686ba8 100644 --- a/src/pdf/SkPDFDocument.cpp +++ b/src/pdf/SkPDFDocument.cpp @@ -263,7 +263,7 @@ void SkPDFDocument::emitFooter(SkWStream* stream, int64_t objCount) { // TODO(vandebo): Linearized format will take a Prev entry too. // TODO(vandebo): PDF/A requires an ID entry. - fTrailerDict->insertInt("Size", objCount); + fTrailerDict->insertInt("Size", int(objCount)); fTrailerDict->insert("Root", new SkPDFObjRef(fDocCatalog.get()))->unref(); } |