summaryrefslogtreecommitdiffhomepage
path: root/Private/Source/IndexableProperty.cxx
diff options
context:
space:
mode:
authorAmlal El Mahrouss <amlal.elmahrouss@icloud.com>2024-01-29 18:17:47 +0100
committerAmlal El Mahrouss <amlal.elmahrouss@icloud.com>2024-01-29 18:18:59 +0100
commit65254486efff0fd1bb78a48ff90b7713a5ce539f (patch)
tree20ce02c12a74ba9e6cd382bf9c1f09a0c611cb4d /Private/Source/IndexableProperty.cxx
parentf03986937db0b927da4b10554801e18e4dc7c43f (diff)
Kernel: Update TODO.
Src: Refactorings according to clang-format. Meta: Update specification. Public: Remove useless UIKit. Signed-off-by: Amlal El Mahrouss <amlal.elmahrouss@icloud.com>
Diffstat (limited to 'Private/Source/IndexableProperty.cxx')
-rw-r--r--Private/Source/IndexableProperty.cxx18
1 files changed, 8 insertions, 10 deletions
diff --git a/Private/Source/IndexableProperty.cxx b/Private/Source/IndexableProperty.cxx
index 5b49d6c1..2dac5a09 100644
--- a/Private/Source/IndexableProperty.cxx
+++ b/Private/Source/IndexableProperty.cxx
@@ -9,20 +9,18 @@
//! @brief hCore NewFS Indexer.
-#include <FSKit/IndexableProperty.hxx>
#include <CompilerKit/Compiler.hpp>
+#include <FSKit/IndexableProperty.hxx>
#include <NewKit/MutableArray.hpp>
#include <NewKit/Utils.hpp>
#define kMaxLenIndexer 256
-namespace hCore
-{
- namespace Indexer
- {
- IndexProperty& IndexableProperty::LeakProperty() noexcept { return fIndex; }
+namespace hCore {
+namespace Indexer {
+IndexProperty& IndexableProperty::LeakProperty() noexcept { return fIndex; }
- void IndexableProperty::AddFlag(Int16 flag) { fFlags |= flag; }
- void IndexableProperty::RemoveFlag(Int16 flag) { fFlags &= flag; }
- }
-}
+void IndexableProperty::AddFlag(Int16 flag) { fFlags |= flag; }
+void IndexableProperty::RemoveFlag(Int16 flag) { fFlags &= flag; }
+} // namespace Indexer
+} // namespace hCore