mirror of
https://github.com/hyprwm/Hyprland
synced 2025-04-12 23:58:11 +02:00
This adds a .clang-tidy file for us. It's not a strict requirement to be compliant, but I tuned it to be alright.
10 lines
223 B
C++
10 lines
223 B
C++
#pragma once
|
|
|
|
#include <hyprutils/memory/WeakPtr.hpp>
|
|
|
|
//NOLINTNEXTLINE
|
|
using namespace Hyprutils::Memory;
|
|
|
|
#define SP Hyprutils::Memory::CSharedPointer
|
|
#define WP Hyprutils::Memory::CWeakPointer
|
|
#define UP std::unique_ptr
|