Skip to content
Snippets Groups Projects
Commit 37cdd991 authored by Deucе's avatar Deucе :ok_hand_tone4:
Browse files

Add a UINT64_MAX hack for VS 2022

Not sure why this isn't defined from inttypes.h, but blah.
parent c3ee3a42
No related branches found
No related tags found
1 merge request!463MRC mods by Codefenix (2024-10-20)
Pipeline #2783 passed
......@@ -75,6 +75,11 @@
#include "base64.h"
#include <crc16.h>
// Hack for Visual Studio 2022
#ifndef UINT64_MAX
#define UINT64_MAX UINT64_C(-1)
#endif
#define BUFSIZE 2048
const int cterm_tabs[]={1,9,17,25,33,41,49,57,65,73,81,89,97,105,113,121,129,137,145};
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment