From: Benjamin Kramer Date: Tue, 13 Aug 2013 09:57:55 +0000 (+0000) Subject: GCC warns about removing const with a c-style cast. X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=d89266dd82747f646e21061df56cdd4378aa0b30;p=oota-llvm.git GCC warns about removing const with a c-style cast. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@188259 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/Support/Unix/Process.inc b/lib/Support/Unix/Process.inc index 768c338a4d1..3731618db5a 100644 --- a/lib/Support/Unix/Process.inc +++ b/lib/Support/Unix/Process.inc @@ -280,7 +280,7 @@ static bool terminalHasColors(int fd) { // // The 'tigetnum' routine returns -2 or -1 on errors, and might return 0 if // the terminfo says that no colors are supported. - if (tigetnum((char *)"colors") > 0) + if (tigetnum(const_cast("colors")) > 0) return true; #endif