This commit is contained in:
parent
22333b6593
commit
52bea2e3c5
@ -1,7 +1,7 @@
|
||||
#include <string_view>
|
||||
#ifndef VERSION
|
||||
|
||||
#define VERSION "0.7.1"
|
||||
#define VERSION "0.7.2"
|
||||
#define NAME "bakatui"
|
||||
|
||||
inline constexpr auto hash_djb2a(const std::string_view sv) {
|
||||
|
@ -5,6 +5,9 @@
|
||||
#include <panel.h>
|
||||
|
||||
void delete_all(std::vector<allocation> *allocated) {
|
||||
if (allocated == nullptr) {
|
||||
return;
|
||||
}
|
||||
for (long long i = allocated->size() - 1; i >= 0; i--) {
|
||||
switch (allocated->at(i).type) {
|
||||
case WINDOW_ARRAY: {
|
||||
|
Loading…
x
Reference in New Issue
Block a user