ithron / googletest

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

GTEST_OS_SYMBIAN macro #define not work with the default complier settings #155

Closed GoogleCodeExporter closed 9 years ago

GoogleCodeExporter commented 9 years ago
What steps will reproduce the problem?
-

What is the expected output? What do you see instead?
in header file: gtest-port.h
...
#elif __SYMBIAN32__
#define GTEST_OS_SYMBIAN 1
...
should be replaced with:
...
#elif defined __SYMBIAN32__
#define GTEST_OS_SYMBIAN 1
...

What version of the product are you using? On what operating system?
1.3.0
Symbian

Please provide any additional information below.
-

Original issue reported on code.google.com by jiangwen...@gmail.com on 16 Jun 2009 at 8:07

GoogleCodeExporter commented 9 years ago

Original comment by zhanyong...@gmail.com on 17 Jun 2009 at 11:16

GoogleCodeExporter commented 9 years ago
fixed in r269.

Original comment by zhanyong...@gmail.com on 19 Jun 2009 at 12:25