diff options
| author | Amlal El Mahrouss <amlal@nekernel.org> | 2025-12-06 07:32:11 -0500 |
|---|---|---|
| committer | Amlal El Mahrouss <amlal@nekernel.org> | 2025-12-06 07:32:11 -0500 |
| commit | 9f7c44f1577f194cb76b03ac45a2af542a86c8b9 (patch) | |
| tree | 15a60b3b9f12b1f53955b08564ed9f071481ca53 | |
| parent | 6decb96948f61b9a311467ecdb621a048fbcd3d6 (diff) | |
fix: target correct branch in CI.
Signed-off-by: Amlal El Mahrouss <amlal@nekernel.org>
| -rw-r--r-- | .github/workflows/necti-dev.yml | 6 | ||||
| -rw-r--r-- | .github/workflows/necti.yml | 2 | ||||
| -rw-r--r-- | include/CompilerKit/Ref.h | 1 |
3 files changed, 4 insertions, 5 deletions
diff --git a/.github/workflows/necti-dev.yml b/.github/workflows/necti-dev.yml index 1c60ee1..74e3a43 100644 --- a/.github/workflows/necti-dev.yml +++ b/.github/workflows/necti-dev.yml @@ -1,10 +1,10 @@ -name: C/C++ CI (NeCTI Dev) +name: Kits (NeCTI,Develop) on: push: - branches: [ "dev" ] + branches: [ "develop" ] pull_request: - branches: [ "dev" ] + branches: [ "develop" ] jobs: build: diff --git a/.github/workflows/necti.yml b/.github/workflows/necti.yml index 58969c6..be94d2d 100644 --- a/.github/workflows/necti.yml +++ b/.github/workflows/necti.yml @@ -1,4 +1,4 @@ -name: C/C++ CI (NeCTI) +name: Kits CI (NeCTI,Stable) on: push: diff --git a/include/CompilerKit/Ref.h b/include/CompilerKit/Ref.h index 72e9472..859b3fe 100644 --- a/include/CompilerKit/Ref.h +++ b/include/CompilerKit/Ref.h @@ -60,7 +60,6 @@ template <typename T> class NonNullRef final { public: explicit NonNullRef() = delete; - explicit NonNullRef(T* ref) : m_Ref(ref, true) {} Ref<T>& operator->() { |
