Skip to content

Commit 826cb17

Browse files
committed
Export tags add
1 parent 3ea6da7 commit 826cb17

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

include/cppcore/CPPCoreCommon.h

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,7 @@ CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
2424

2525
#include <cstddef>
2626
#include <cassert>
27+
#include <cinttypes>
2728
#include <string.h>
2829
#include <stddef.h>
2930
#include <stdio.h>

include/cppcore/Memory/MemUtils.h

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -22,8 +22,7 @@ CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
2222
-----------------------------------------------------------------------------------------------*/
2323
#pragma once
2424

25-
#include <string.h>
26-
#include <cinttypes>
25+
#include <cppcore/CPPCoreCommon.h>
2726

2827
namespace cppcore {
2928

@@ -40,7 +39,7 @@ inline size_t align(size_t n) {
4039
///
4140
/// @brief Utility class for common memory operations.
4241
//-------------------------------------------------------------------------------------------------
43-
class MemUtils {
42+
class DLL_CPPCORE_EXPORT MemUtils {
4443
public:
4544
/// @brief Will clear the given buffer with zero.
4645
/// @param buffer [inout] The buffer to clear.

0 commit comments

Comments
 (0)