From 93a2cab1011cc997e383f0555fd2eff4e4725bb2 Mon Sep 17 00:00:00 2001 From: Watson Date: Sat, 2 Nov 2013 23:49:34 +0900 Subject: [PATCH] fix RM-304 http://hipbyte.myjetbrains.com/youtrack/issue/RM-304 if stub codes are not generated for 64 bit, it should share 32 bit stub codes. --- data/Rakefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/data/Rakefile b/data/Rakefile index a2430aab..b5ca2c98 100644 --- a/data/Rakefile +++ b/data/Rakefile @@ -234,9 +234,9 @@ def generate_bs_static_stub(file, includes) end if code32 - text << "\n#if !defined(__LP64__)\n" + text << "\n#if !defined(__LP64__)\n" if code64 text << code32 - text << "\n#endif\n" + text << "\n#endif\n" if code64 end did_something = true