Skip to content

Commit 135d367

Browse files
committed
Update func and some of the internal logic
1 parent bdfead3 commit 135d367

38 files changed

+361
-196
lines changed

.gitignore

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,16 @@
1+
# User Specific Generated Files
12
**/.vs/*
23
**/.vscode/*
34
**/.idea/*
5+
.idea/*
6+
.vs/*
7+
.vscode/*
48
build/*
59
out/*
610
.cache
711
.DS_Store
812

13+
# User Specific Configuration Files
914
CMakeSettings.json
1015
compile_commands.json
1116
/CMakePresets.json
@@ -47,11 +52,11 @@ compile_commands.json
4752

4853
### JetBrains Specific
4954

50-
.idea/*
51-
5255
# File-based project format
5356
*.iws
5457

5558
# CMake
59+
# This is the default naming convention use for generating cmake builds.
60+
# If the user did not configure there project properly then this is here to prevent an accidental push of these files
5661
cmake-build-*/
5762

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,10 @@
1-
// Copyright WizWorks, Inc. All Rights Reserved.
1+
// Copyright (c) 2023-Present Mim contributors (see LICENSE)
22

33
#pragma once
44

5-
#include "system/core.hpp"
5+
#include "mim/detail/qualifier.hpp"
6+
7+
namespace mim
8+
{
9+
10+
} // namespace mim
Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,10 @@
1-
// Copyright WizWorks, Inc. All Rights Reserved.
1+
// Copyright (c) 2023-Present Mim contributors (see LICENSE)
22

33
#pragma once
44

5-
#include "system/core.hpp"
5+
#include "mim/detail/qualifier.hpp"
6+
7+
namespace mim
8+
{
9+
10+
} // namespace mim

0 commit comments

Comments
 (0)