This commit is contained in:
Бычков Андрей
2022-08-08 17:14:21 +03:00
9 changed files with 55 additions and 55 deletions

View File

@@ -392,7 +392,7 @@ PICout & PICout::operator <<(float v) {if (!act_) return *this; space(); PIFLOAT
PICout & PICout::operator <<(double v) {if (!act_) return *this; space(); PIFLOATCOUT(v)}
PICout & PICout::operator <<(void * v) {
PICout & PICout::operator <<(const void * v) {
if (!act_) return *this;
space();
write("0x" + PIString::fromNumber(ullong(v), 16));