diff options
| author | ruki <[email protected]> | 2023-04-30 22:04:47 +0800 |
|---|---|---|
| committer | ruki <[email protected]> | 2023-04-30 22:04:47 +0800 |
| commit | 3e670dccb9389dffec1195541069b1b10d969ce5 (patch) | |
| tree | 4913f52071241ea822361478b95ffcd440741c7f /tests/projects/other/autogen_codedep/src/main.cpp | |
| parent | d04dc34167154efd95f858a9ece38d04b9a2eddd (diff) | |
fix autogen code
Diffstat (limited to 'tests/projects/other/autogen_codedep/src/main.cpp')
| -rw-r--r-- | tests/projects/other/autogen_codedep/src/main.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/projects/other/autogen_codedep/src/main.cpp b/tests/projects/other/autogen_codedep/src/main.cpp index 53f141f46..3241308f7 100644 --- a/tests/projects/other/autogen_codedep/src/main.cpp +++ b/tests/projects/other/autogen_codedep/src/main.cpp @@ -2,9 +2,9 @@ using namespace std; -extern unsigned char data[]; +extern unsigned char g_codegen_data[]; int main(int argc, char** argv) { - cout << (const char*)data << endl; + cout << (const char*)g_codegen_data << endl; return 0; } |
