0

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
This commit is contained in:
aurimas@google.com
2014-05-22 23:26:41 +00:00
parent ff6d09645c
commit 1d25a02b38

@ -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