Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(5)

Side by Side Diff: src/ports/SkDebug_stdio.cpp

Issue 1207893002: Clean up a few includes, introduce iwyu. (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: Just a little more cleanup. Created 5 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
1
2 /* 1 /*
3 * Copyright 2006 The Android Open Source Project 2 * Copyright 2006 The Android Open Source Project
4 * 3 *
5 * Use of this source code is governed by a BSD-style license that can be 4 * Use of this source code is governed by a BSD-style license that can be
6 * found in the LICENSE file. 5 * found in the LICENSE file.
7 */ 6 */
8 7
9
10 #include "SkTypes.h"
11
12 #include <stdarg.h> 8 #include <stdarg.h>
reed1 2015/06/24 23:20:31 This one seems odd -- where is the declaration for
bungeman-skia 2015/06/25 14:45:06 You're right, iwyu actually though that we didn't
13 #include <stdio.h> 9 #include <stdio.h>
14 10
15 void SkDebugf(const char format[], ...) { 11 void SkDebugf(const char format[], ...) {
16 va_list args; 12 va_list args;
17 va_start(args, format); 13 va_start(args, format);
18 vfprintf(stderr, format, args); 14 vfprintf(stderr, format, args);
19 va_end(args); 15 va_end(args);
20 } 16 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698