mirror of
https://github.com/abhigyanpatwari/GitNexus.git
synced 2026-08-28 05:25:25 +00:00
Some checks are pending
CodeQL / Analyze (javascript-typescript) (push) Waiting to run
CodeQL / Analyze (python) (push) Waiting to run
Gitleaks / gitleaks (push) Waiting to run
Release Candidate / Check if release candidate should run (push) Waiting to run
Release Candidate / ci (push) Blocked by required conditions
Release Candidate / Publish release candidate to npm (push) Blocked by required conditions
Release Candidate / Build & Push RC Docker images (push) Blocked by required conditions
Scorecard / Scorecard analysis (push) Waiting to run
Trivy Image Scan / Trivy (gitnexus-cli) (push) Waiting to run
Trivy Image Scan / Trivy (gitnexus-web) (push) Waiting to run
23 lines
342 B
C++
23 lines
342 B
C++
#include "audit.h"
|
|
|
|
namespace app {
|
|
void run() {
|
|
std::vector<N::T> v;
|
|
apply(v);
|
|
}
|
|
|
|
void runNested() {
|
|
std::map<std::string, std::vector<N::T>> m;
|
|
applyNested(m);
|
|
}
|
|
|
|
void runArray() {
|
|
std::array<N::T, 4> a;
|
|
applyArray(a);
|
|
}
|
|
|
|
void runStdConflict() {
|
|
std::vector<N::T> v;
|
|
applyStdConflict(v);
|
|
}
|
|
}
|