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 <davidben@google.com>
Auto-Submit: Bob Beck <bbe@google.com>
Commit-Queue: David Benjamin <davidben@google.com>
This commit is contained in:
Bob Beck 2023-08-28 21:25:30 +00:00 committed by Boringssl LUCI CQ
parent 11d943ac2d
commit 85081c6b3c
2 changed files with 3 additions and 3 deletions

View File

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

View File

@ -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);
};