Commit 1d25a02b authored by aurimas@google.com's avatar aurimas@google.com

Fix component build with gcc 4.6 on Android.

CRYPTO_EXPORT macro has to be before the non-void return type.

BUG=None
TBR=rsleevi@chromium.org

Review URL: https://codereview.chromium.org/296223002

git-svn-id: svn://svn.chromium.org/chrome/trunk/src@272363 0039d316-1c4b-4281-b951-d872f2087c98
parent ff6d0964
......@@ -21,7 +21,7 @@ namespace crypto {
// within OpenSSL.
//
// Note: |out| must remain valid for the duration of the BIO.
BIO* CRYPTO_EXPORT BIO_new_string(std::string* out);
CRYPTO_EXPORT BIO* BIO_new_string(std::string* out);
} // namespace crypto
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment