[PATCH] D38366: Fix a warning about casting a const pointer to void*

2017-09-28 Thread Nikolai Bozhenov via Phabricator via cfe-commits
n.bozhenov abandoned this revision. n.bozhenov added a comment. Seems that it has been just fixed by https://reviews.llvm.org/rL314424 :-) Abandoning this review. https://reviews.llvm.org/D38366 ___ cfe-commits mailing list

[PATCH] D38366: Fix a warning about casting a const pointer to void*

2017-09-28 Thread Nikolai Bozhenov via Phabricator via cfe-commits
n.bozhenov created this revision. https://reviews.llvm.org/rL314336 introduced a new compile time warning about casting a const pointer to void*. Because of that the compiler fails to be built with `-Werror` flag. The suggested patch fixes the issue. https://reviews.llvm.org/D38366 Files: