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

Side by Side Diff: third_party/harfbuzz-ng/src/hb-warning.cc

Issue 396393005: Roll HarfBuzz to 0.9.32 (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix for include order presubmit issue Created 6 years, 5 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
« no previous file with comments | « third_party/harfbuzz-ng/src/hb-version.h ('k') | third_party/harfbuzz-ng/src/main.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 /* 1 /*
2 * Copyright © 2012 Google, Inc. 2 * Copyright © 2012 Google, Inc.
3 * 3 *
4 * This is part of HarfBuzz, a text shaping library. 4 * This is part of HarfBuzz, a text shaping library.
5 * 5 *
6 * Permission is hereby granted, without written agreement and without 6 * Permission is hereby granted, without written agreement and without
7 * license or royalty fees, to use, copy, modify, and distribute this 7 * license or royalty fees, to use, copy, modify, and distribute this
8 * software and its documentation for any purpose, provided that the 8 * software and its documentation for any purpose, provided that the
9 * above copyright notice and the following two paragraphs appear in 9 * above copyright notice and the following two paragraphs appear in
10 * all copies of this software. 10 * all copies of this software.
(...skipping 35 matching lines...) Expand 10 before | Expand all | Expand 10 after
46 46
47 #if defined(HB_ATOMIC_INT_NIL) || defined(HB_MUTEX_IMPL_NIL) 47 #if defined(HB_ATOMIC_INT_NIL) || defined(HB_MUTEX_IMPL_NIL)
48 #ifdef _MSC_VER 48 #ifdef _MSC_VER
49 #pragma message("To suppress these warnings, define HB_NO_MT") 49 #pragma message("To suppress these warnings, define HB_NO_MT")
50 #else 50 #else
51 #warning "To suppress these warnings, define HB_NO_MT" 51 #warning "To suppress these warnings, define HB_NO_MT"
52 #endif 52 #endif
53 #endif 53 #endif
54 54
55 55
56 #include "hb-unicode-private.hh"
57
58 #if !defined(HB_NO_UNICODE_FUNCS) && defined(HB_UNICODE_FUNCS_NIL)
59 #ifdef _MSC_VER
60 #pragma message("Could not find any Unicode functions implementation, you have t o provide your own")
61 #pragma message("To suppress this warnings, define HB_NO_UNICODE_FUNCS")
62 #else
63 #warning "Could not find any Unicode functions implementation, you have to provi de your own"
64 #warning "To suppress this warning, define HB_NO_UNICODE_FUNCS"
65 #endif
66 #endif
OLDNEW
« no previous file with comments | « third_party/harfbuzz-ng/src/hb-version.h ('k') | third_party/harfbuzz-ng/src/main.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698