diff options
author | Andrew Morrow <acm@mongodb.com> | 2015-03-25 19:17:26 -0400 |
---|---|---|
committer | Andrew Morrow <acm@mongodb.com> | 2015-03-26 10:17:08 -0400 |
commit | 06b58e9c7c349ce81504cf6ce2823082205ab0f7 (patch) | |
tree | e56a7389a28887ad11fcd80bcdf7e21cccd033ab /src/mongo/platform/compiler.h | |
parent | 05533d52a29589f54ec9ee582e770a5fdda552a5 (diff) | |
download | mongo-06b58e9c7c349ce81504cf6ce2823082205ab0f7.tar.gz |
SERVER-17736 Remove obsolete C++ driver symbol export miscellanea
Diffstat (limited to 'src/mongo/platform/compiler.h')
-rw-r--r-- | src/mongo/platform/compiler.h | 13 |
1 files changed, 7 insertions, 6 deletions
diff --git a/src/mongo/platform/compiler.h b/src/mongo/platform/compiler.h index 75882011096..f4868acf432 100644 --- a/src/mongo/platform/compiler.h +++ b/src/mongo/platform/compiler.h @@ -95,12 +95,13 @@ * class MONGO_COMPILER_API_EXPORT ExportedType { ... }; * MONGO_COMPILER_API_EXPORT SomeType exportedFunction(...); * - * NOTE: Rather than using this macro directly, one typically declares another macro named for the - * library, which is conditionally defined to either MONGO_COMIPLER_API_EXPORT or - * MONGO_COMPILER_API_IMPORT based on whether the compiler is currently building the library or - * building an object that depends on the library, respectively. For example, MONGO_CLIENT_API - * might be defined to MONGO_COMPILER_API_EXPORT when building the MongoDB shared library, and to - * MONGO_COMPILER_API_IMPORT when building an application that links against the shared library. + * NOTE: Rather than using this macro directly, one typically declares another macro named + * for the library, which is conditionally defined to either MONGO_COMIPLER_API_EXPORT or + * MONGO_COMPILER_API_IMPORT based on whether the compiler is currently building the library + * or building an object that depends on the library, respectively. For example, + * MONGO_FOO_API might be defined to MONGO_COMPILER_API_EXPORT when building the MongoDB + * libfoo shared library, and to MONGO_COMPILER_API_IMPORT when building an application that + * links against that shared library. * * * MONGO_COMPILER_API_IMPORT |