tanghong123 / googletest

Automatically exported from code.google.com/p/googletest
BSD 3-Clause "New" or "Revised" License
0 stars 0 forks source link

need to clean up macro definitions #113

Closed GoogleCodeExporter closed 9 years ago

GoogleCodeExporter commented 9 years ago
We have

#define GTEST_FOO
...
#ifdef GTEST_FOO

in several places.  Replace with

#define GTEST_FOO 1
...
#if GTEST_FOO

This makes the style more consistent.

Original issue reported on code.google.com by zhanyong...@gmail.com on 9 Feb 2009 at 10:30

GoogleCodeExporter commented 9 years ago

Original comment by zhanyong...@gmail.com on 22 Feb 2009 at 5:52