mirror of
https://github.com/topjohnwu/cxx.git
synced 2025-02-19 15:41:12 +00:00
typename -> class to fix macOS and MSVC
This commit is contained in:
parent
cbc2a1040d
commit
e0d261ba2b
@ -22,7 +22,7 @@ class BlobstoreClient::impl {
|
||||
std::unordered_map<uint64_t, Blob> blobs;
|
||||
};
|
||||
|
||||
BlobstoreClient::BlobstoreClient() : impl(new typename BlobstoreClient::impl) {}
|
||||
BlobstoreClient::BlobstoreClient() : impl(new class BlobstoreClient::impl) {}
|
||||
|
||||
// Upload a new blob and return a blobid that serves as a handle to the blob.
|
||||
uint64_t BlobstoreClient::put(MultiBuf &buf) const {
|
||||
|
Loading…
x
Reference in New Issue
Block a user