projects
/
pulseview.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
ab973f4
)
Remove broken assert().
author
Martin Ling
<martin-git@earth.li>
Wed, 27 Aug 2014 18:36:56 +0000
(19:36 +0100)
committer
Uwe Hermann
<uwe@hermann-uwe.de>
Fri, 29 Aug 2014 19:33:59 +0000
(21:33 +0200)
This is no longer valid since
c82c7e4
changed _data to a std::vector.
pv/data/logicsnapshot.cpp
patch
|
blob
|
history
diff --git
a/pv/data/logicsnapshot.cpp
b/pv/data/logicsnapshot.cpp
index f1ff3c3c267fbf14a7fa56aba4b6a48843c0b1dd..825d2f1f51f6ea59d93883ec3178e68a11675e54 100644
(file)
--- a/
pv/data/logicsnapshot.cpp
+++ b/
pv/data/logicsnapshot.cpp
@@
-263,7
+263,6
@@
void LogicSnapshot::append_payload_to_mipmap()
uint64_t LogicSnapshot::get_sample(uint64_t index) const
{
- assert(_data);
assert(index < _sample_count);
return unpack_sample((uint8_t*)_data.data() + index * _unit_size);