Files
mpd/src/sticker/Sticker.hxx
Max Kellermann 8b77da545d *: use transparent comparison for std::{map,set} with std::string keys
This avoids many std::string temporaries for lookups.
2023-03-12 09:12:02 +01:00

15 lines
258 B
C++

// SPDX-License-Identifier: GPL-2.0-or-later
// Copyright The Music Player Daemon Project
#ifndef MPD_STICKER_HXX
#define MPD_STICKER_HXX
#include <map>
#include <string>
struct Sticker {
std::map<std::string, std::string, std::less<>> table;
};
#endif