fix: add missing header for clang

Clang need these header to be included for definition of uint32_t and
uint64_t.
This commit is contained in:
black-desk 2023-05-10 13:06:24 +08:00 committed by deepin-bot[bot]
parent 1fd19ce97d
commit d3dcd91ca6
2 changed files with 2 additions and 0 deletions

View File

@ -7,6 +7,7 @@
#include <string> #include <string>
#include <vector> #include <vector>
#include <cstdint>
class DesktopInfo; class DesktopInfo;
class AppLaunchContext class AppLaunchContext

View File

@ -8,6 +8,7 @@
#include <string> #include <string>
#include <map> #include <map>
#include <vector> #include <vector>
#include <cstdint>
typedef std::map<std::string, std::string> KeyMap; typedef std::map<std::string, std::string> KeyMap;
typedef std::map<std::string, KeyMap> MainKeyMap; typedef std::map<std::string, KeyMap> MainKeyMap;