From 85081c6b3c0b26129893c1bff6bfa42bc3ba2d2c Mon Sep 17 00:00:00 2001 From: Bob Beck Date: Mon, 28 Aug 2023 21:25:30 +0000 Subject: [PATCH] Remove undesired OPENSSL_EXPORT's in non-library code Bug: chromium:1322914 Change-Id: I2efbb110747273188245530f9ab1964faba5201c Reviewed-on: https://boringssl-review.googlesource.com/c/boringssl/+/62825 Reviewed-by: David Benjamin Auto-Submit: Bob Beck Commit-Queue: David Benjamin --- pki/fillins/file_util.h | 2 +- pki/fillins/path_service.h | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/pki/fillins/file_util.h b/pki/fillins/file_util.h index 81efa8c86..23e9b1a9e 100644 --- a/pki/fillins/file_util.h +++ b/pki/fillins/file_util.h @@ -15,7 +15,7 @@ namespace bssl { namespace fillins { -OPENSSL_EXPORT bool ReadFileToString(const FilePath &path, std::string *out); +bool ReadFileToString(const FilePath &path, std::string *out); } // namespace fillins diff --git a/pki/fillins/path_service.h b/pki/fillins/path_service.h index 7d8903470..c004f9c8d 100644 --- a/pki/fillins/path_service.h +++ b/pki/fillins/path_service.h @@ -13,7 +13,7 @@ namespace bssl { namespace fillins { -class OPENSSL_EXPORT FilePath { +class FilePath { public: FilePath(); FilePath(const std::string &path); @@ -30,7 +30,7 @@ enum PathKey { DIR_SOURCE_ROOT = 0, }; -class OPENSSL_EXPORT PathService { +class PathService { public: static void Get(PathKey key, FilePath *out); };