diff options
author | Erik de Castro Lopo <erikd@mega-nerd.com> | 2013-09-01 10:32:48 +1000 |
---|---|---|
committer | Erik de Castro Lopo <erikd@mega-nerd.com> | 2013-09-01 10:32:52 +1000 |
commit | 3ece67d71f153695a02b37f65cd9bf2593d332da (patch) | |
tree | 1f85dc2192667055e2dc61b7e7742d4adb4c1acd /include/share | |
parent | deb209906c28e6d35ef2c47a94285d7acc967c1b (diff) | |
download | flac-3ece67d71f153695a02b37f65cd9bf2593d332da.tar.gz |
include/share/compat.h : Remove deinition of restrict.
Wasn't being used anywhere in the code and clashes with a symbol in
MSVC.
Suggested-by: lvqcl <lvqcl.mail@gmail.com>
Diffstat (limited to 'include/share')
-rw-r--r-- | include/share/compat.h | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/include/share/compat.h b/include/share/compat.h index 222de658..022dc45b 100644 --- a/include/share/compat.h +++ b/include/share/compat.h @@ -73,10 +73,6 @@ #endif #if defined(_MSC_VER) -#if _MSC_VER < 1500 -/* Visual Studio 2008 has restrict. */ -#define restrict __restrict -#endif #define inline __inline #endif |