diff options
author | aurimas@google.com <aurimas@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2014-05-22 23:26:41 +0000 |
---|---|---|
committer | aurimas@google.com <aurimas@google.com@0039d316-1c4b-4281-b951-d872f2087c98> | 2014-05-22 23:26:41 +0000 |
commit | 1d25a02b388dbd4c22e6a9338aa96580efbc712a (patch) | |
tree | c752c1bb4e955fce3d785208c5a16259b61ca765 /crypto | |
parent | ff6d09645c45a2182f4d9532965dedb0eeb981a7 (diff) | |
download | chromium_src-1d25a02b388dbd4c22e6a9338aa96580efbc712a.zip chromium_src-1d25a02b388dbd4c22e6a9338aa96580efbc712a.tar.gz chromium_src-1d25a02b388dbd4c22e6a9338aa96580efbc712a.tar.bz2 |
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
Diffstat (limited to 'crypto')
-rw-r--r-- | crypto/openssl_bio_string.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/crypto/openssl_bio_string.h b/crypto/openssl_bio_string.h index 70d4331..ca46c12 100644 --- a/crypto/openssl_bio_string.h +++ b/crypto/openssl_bio_string.h @@ -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 |