src/hb-warning.cc


Log

Author Commit Date CI Message
Behdad Esfahbod 9ae156b7 2015-07-05T22:43:17 Fix pragma usage https://bugs.freedesktop.org/show_bug.cgi?id=91228 Commit cdcdfe61b97a0a48ccf834b6d924d187da9609be changed two `#pragma message` to `#pragma error` in hb-unicode.cc, however MSVC uses #error, just like the #else branch. `#pragma error` is an unknown pragma so MSVC does not fail the build because of it, which I believe was the intention of that commit. If it's meant to be an #error, then the #ifdef for _MSC_VER can be removed entirely.
Behdad Esfahbod cdcdfe61 2015-04-08T13:25:04 Err, instead of warn, if mutex / atomic / unicode funcs are missing Hopefully this results in fewer badly built HarfBuzz integrations.
Behdad Esfahbod 09732cc6 2014-03-19T12:00:17 Remove dead warning
Behdad Esfahbod 08b29c08 2013-01-14T00:32:12 Revert "Minor" This reverts commit 0a492357016bc9a614d2a726f2006c10af68ca58. Enables code on more compilers.
Behdad Esfahbod d5045a5f 2012-08-11T21:26:25 [ICU] Use new normalizer2 compose/decompose API It's considerably faster than the fallback implementation we had previously!
Behdad Esfahbod 0a492357 2012-07-13T13:20:49 Minor
Behdad Esfahbod cdafe3a7 2012-06-05T16:34:49 Add gcc intrinsics implementations for atomic and mutex
Behdad Esfahbod bc145658 2012-05-27T10:45:57 Warn if no Unicode functions implementation is found
Behdad Esfahbod ec3ba4b9 2012-05-17T20:30:46 Move atomic ops into their own header
Behdad Esfahbod 45227c10 2012-02-23T19:47:43 Add hb-warning.cc. Oops!