void function now

This commit is contained in:
Robin Müller 2021-06-11 15:05:43 +02:00
parent 1630682548
commit 589e64fc46
No known key found for this signature in database
GPG Key ID: 71B58F8A3CDFA9AC
2 changed files with 2 additions and 2 deletions

View File

@ -19,7 +19,7 @@ bool ServiceInterfaceStream::crAdditionEnabled() const {
return streambuf.crAdditionEnabled();
}
bool ServiceInterfaceStream::setAsciiColorPrefix(std::string asciiColorCode) {
void ServiceInterfaceStream::setAsciiColorPrefix(std::string asciiColorCode) {
streambuf.setAsciiColorPrefix(asciiColorCode);
}

View File

@ -46,7 +46,7 @@ public:
*/
bool crAdditionEnabled() const;
bool setAsciiColorPrefix(std::string asciiColorCode);
void setAsciiColorPrefix(std::string asciiColorCode);
protected:
ServiceInterfaceBuffer streambuf;