mirror of
https://github.com/asmjit/asmjit.git
synced 2025-12-18 13:04:36 +03:00
Fix clang warnings
This commit is contained in:
@@ -862,7 +862,7 @@ struct AlignNode : public BaseNode {
|
|||||||
//! @brief Get align size in bytes.
|
//! @brief Get align size in bytes.
|
||||||
ASMJIT_INLINE uint32_t getSize() const { return _size; }
|
ASMJIT_INLINE uint32_t getSize() const { return _size; }
|
||||||
//! @brief Set align size in bytes to @a size.
|
//! @brief Set align size in bytes to @a size.
|
||||||
ASMJIT_INLINE void setSize(uint32_t size) { _size; }
|
ASMJIT_INLINE void setSize(uint32_t size) { _size = size; }
|
||||||
|
|
||||||
// --------------------------------------------------------------------------
|
// --------------------------------------------------------------------------
|
||||||
// [Members]
|
// [Members]
|
||||||
@@ -1253,8 +1253,8 @@ struct FuncNode : public BaseNode {
|
|||||||
BaseNode(compiler, kNodeTypeFunc),
|
BaseNode(compiler, kNodeTypeFunc),
|
||||||
_entryNode(NULL),
|
_entryNode(NULL),
|
||||||
_exitNode(NULL),
|
_exitNode(NULL),
|
||||||
_end(NULL),
|
|
||||||
_decl(NULL),
|
_decl(NULL),
|
||||||
|
_end(NULL),
|
||||||
_argList(NULL),
|
_argList(NULL),
|
||||||
_funcHints(IntUtil::mask(kFuncHintNaked)),
|
_funcHints(IntUtil::mask(kFuncHintNaked)),
|
||||||
_funcFlags(0),
|
_funcFlags(0),
|
||||||
|
|||||||
Reference in New Issue
Block a user