Skip to content

Commit bf93dcd

Browse files
committed
Modify for check
1 parent ebb0c6f commit bf93dcd

File tree

466 files changed

+60664
-8
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

466 files changed

+60664
-8
lines changed

.github/workflows/run_tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ jobs:
1919
strategy:
2020
fail-fast: false
2121
matrix:
22-
os: [ubuntu-latest, windows-latest, macos-14]
22+
os: [macos-14]
2323
version: ["3.10", "3.13"]
2424
defaults:
2525
run:

cpp/RAT2/CoderTimeAPI.cpp

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
//
2+
// Non-Degree Granting Education License -- for use at non-degree
3+
// granting, nonprofit, education, and research organizations only. Not
4+
// for commercial or industrial use.
5+
//
6+
// CoderTimeAPI.cpp
7+
//
8+
// Code generation for function 'CoderTimeAPI'
9+
//
10+
11+
// Include files
12+
#include "CoderTimeAPI.h"
13+
#include "RATMain_data.h"
14+
#include "rt_nonfinite.h"
15+
16+
// Function Definitions
17+
namespace RAT
18+
{
19+
void freq_not_empty_init()
20+
{
21+
freq_not_empty = false;
22+
}
23+
}
24+
25+
// End of code generation (CoderTimeAPI.cpp)

cpp/RAT2/CoderTimeAPI.h

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
//
2+
// Non-Degree Granting Education License -- for use at non-degree
3+
// granting, nonprofit, education, and research organizations only. Not
4+
// for commercial or industrial use.
5+
//
6+
// CoderTimeAPI.h
7+
//
8+
// Code generation for function 'CoderTimeAPI'
9+
//
10+
#ifndef CODERTIMEAPI_H
11+
#define CODERTIMEAPI_H
12+
13+
// Include files
14+
#include "rtwtypes.h"
15+
#include <cstddef>
16+
#include <cstdlib>
17+
18+
// Function Declarations
19+
namespace RAT
20+
{
21+
void freq_not_empty_init();
22+
}
23+
24+
#endif
25+
26+
// End of code generation (CoderTimeAPI.h)

0 commit comments

Comments
 (0)