summaryrefslogtreecommitdiffstats
path: root/crypto
diff options
context:
space:
mode:
authoraurimas@google.com <aurimas@google.com@0039d316-1c4b-4281-b951-d872f2087c98>2014-05-22 23:26:41 +0000
committeraurimas@google.com <aurimas@google.com@0039d316-1c4b-4281-b951-d872f2087c98>2014-05-22 23:26:41 +0000
commit1d25a02b388dbd4c22e6a9338aa96580efbc712a (patch)
treec752c1bb4e955fce3d785208c5a16259b61ca765 /crypto
parentff6d09645c45a2182f4d9532965dedb0eeb981a7 (diff)
downloadchromium_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.h2
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