mirror of
https://github.com/eclipse/upm.git
synced 2025-03-24 01:10:22 +03:00
ozw: fix up some issues reported by static analysis
Signed-off-by: Jon Trulson <jtrulson@ics.com>
This commit is contained in:
parent
743730550c
commit
e0ef6eea64
@ -576,8 +576,8 @@ namespace upm {
|
|||||||
|
|
||||||
private:
|
private:
|
||||||
// prevent copying and assignment
|
// prevent copying and assignment
|
||||||
OZW(OZW const &) {};
|
OZW(OZW const &) = delete;
|
||||||
OZW& operator=(OZW const&) {};
|
OZW& operator=(OZW const&) = delete;
|
||||||
|
|
||||||
// our class instance
|
// our class instance
|
||||||
static OZW* m_instance;
|
static OZW* m_instance;
|
||||||
|
@ -24,6 +24,8 @@
|
|||||||
|
|
||||||
#include <stdint.h>
|
#include <stdint.h>
|
||||||
#include <string>
|
#include <string>
|
||||||
|
#include <cinttypes>
|
||||||
|
|
||||||
#include "zwNode.hpp"
|
#include "zwNode.hpp"
|
||||||
|
|
||||||
#include "Node.h"
|
#include "Node.h"
|
||||||
@ -185,7 +187,7 @@ void zwNode::dumpNode(bool all)
|
|||||||
valueUnits.c_str(),
|
valueUnits.c_str(),
|
||||||
perms.c_str());
|
perms.c_str());
|
||||||
|
|
||||||
fprintf(stderr, "\t\t VID: %016x\n",
|
fprintf(stderr, "\t\t VID: %016" PRIx64 "\n",
|
||||||
vid.GetId());
|
vid.GetId());
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user