diff options
author | flow <flowlnlnln@gmail.com> | 2022-10-23 14:28:33 -0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-10-23 14:28:33 -0300 |
commit | 7f441f5b878677df0a1f12b62a132959402c6cd0 (patch) | |
tree | 9b43dcd20d4a2727ee7c108d5cb1247ef4ba3047 /launcher/HoeDown.h | |
parent | 29e6e170cc73c39d816a4b5e857849aa6329b552 (diff) | |
parent | 56ae4e5b6ad984d4c9569cb024d807bd695555a6 (diff) | |
download | PrismLauncher-7f441f5b878677df0a1f12b62a132959402c6cd0.tar.gz PrismLauncher-7f441f5b878677df0a1f12b62a132959402c6cd0.tar.bz2 PrismLauncher-7f441f5b878677df0a1f12b62a132959402c6cd0.zip |
Merge pull request #228 from bensuperpc/change_cast
Diffstat (limited to 'launcher/HoeDown.h')
-rw-r--r-- | launcher/HoeDown.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/launcher/HoeDown.h b/launcher/HoeDown.h index b9e06ffb..cb62de6c 100644 --- a/launcher/HoeDown.h +++ b/launcher/HoeDown.h @@ -42,7 +42,7 @@ public: } void put(QByteArray input) { - hoedown_buffer_put(buf, (uint8_t *) input.data(), input.size()); + hoedown_buffer_put(buf, reinterpret_cast<uint8_t *>(input.data()), input.size()); } const uint8_t * data() const { |