Skip to content

Commit

Permalink
Update
Browse files Browse the repository at this point in the history
  • Loading branch information
ShirasawaSama committed Oct 16, 2023
1 parent cf87ad8 commit 0dd25b2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion include/jshm.h
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ namespace jshm {
HANDLE hMapFile;
LPTSTR _pBuf;

shared_memory(HANDLE hMapFile, LPTSTR pBuf, int size, const char* name) : hMapFile(hMapFile), pBuf(pBuf), _size(size), _name(name) { }
shared_memory(HANDLE hMapFile, LPTSTR pBuf, int size, const char* name) : hMapFile(hMapFile), _pBuf(pBuf), _size(size), _name(name) { }
#elif __linux__ || __APPLE__
void* _pBuf = nullptr;
bool _isCreate;
Expand Down

0 comments on commit 0dd25b2

Please sign in to comment.