Remove extra cout (#1101)

This commit is contained in:
David Markowitz 2023-05-25 13:29:46 -07:00 committed by GitHub
parent 59387e5fe3
commit 238751f14e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -342,7 +342,6 @@ public:
*/
template <typename AmfType>
AMFValue<AmfType>* Get(uint32_t index) const {
std::cout << (index < this->dense.size()) << std::endl;
return index < this->dense.size() ?
dynamic_cast<AMFValue<AmfType>*>(this->dense.at(index)) :
nullptr;