[vlc-commits] include: do not use HAVE_CXX11

Rémi Denis-Courmont git at videolan.org
Tue Sep 20 12:11:08 CEST 2016


vlc | branch: master | Rémi Denis-Courmont <remi at remlab.net> | Tue Sep 20 13:10:11 2016 +0300| [312655fce1c8501817c825c07bf05157e97596e7] | committer: Rémi Denis-Courmont

include: do not use HAVE_CXX11

It is never defined (as of 2.2.0-git-8982-g4b1c9dc).

> http://git.videolan.org/gitweb.cgi/vlc.git/?a=commit;h=312655fce1c8501817c825c07bf05157e97596e7
---

 include/vlc_fixups.h | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/include/vlc_fixups.h b/include/vlc_fixups.h
index 4490f0c..03904f3 100644
--- a/include/vlc_fixups.h
+++ b/include/vlc_fixups.h
@@ -33,7 +33,7 @@
 
 /* C++11 says there's no need to define __STDC_*_MACROS when including
  * inttypes.h and stdint.h. */
-#if defined (__cplusplus) && (!defined(HAVE_CXX11) || defined(__MINGW32__) || defined(__UCLIBC__))
+#if defined (__cplusplus) && (defined(__MINGW32__) || defined(__UCLIBC__))
 # ifndef __STDC_FORMAT_MACROS
 #  define __STDC_FORMAT_MACROS 1
 # endif



More information about the vlc-commits mailing list