mirror of
https://github.com/polybar/polybar.git
synced 2026-02-14 10:55:45 +00:00
In GCC 15, cstdint is less commonly included in stdlib headers so we need explicit includes: https://gcc.gnu.org/gcc-15/porting_to.html See-Also: https://bugs.gentoo.org/937526 Signed-off-by: John Helmert III <ajak@gentoo.org>
17 lines
310 B
C++
17 lines
310 B
C++
#pragma once
|
|
|
|
#include "common.hpp"
|
|
#include "errors.hpp"
|
|
#include "ipc/msg.hpp"
|
|
|
|
#include <cstdint>
|
|
|
|
POLYBAR_NS
|
|
|
|
namespace ipc {
|
|
vector<uint8_t> encode(const type_t type, const vector<uint8_t>& data = {});
|
|
vector<uint8_t> encode(const type_t type, const string& data);
|
|
} // namespace ipc
|
|
|
|
POLYBAR_NS_END
|