"tests/pipelines/vscode:/vscode.git/clone" did not exist on "a80480f0f2c6b7981297e62a4878a4515148f1ad"
Commit db91bed2 authored by Astha Rai's avatar Astha Rai
Browse files

replicated standard unsigned integer types in random_gen

parent f714319e
...@@ -3,9 +3,13 @@ ...@@ -3,9 +3,13 @@
#pragma once #pragma once
#include <ck/utility/ignore.hpp> #include <ck/utility/ignore.hpp>
#include "data_type.hpp"
#include "ck/ck.hpp" #include "ck/ck.hpp"
#ifdef CK_CODE_GEN_RTC
using uint8_t = unsigned char;
using uint16_t = unsigned short;
using uint32_t = unsigned int;
#endif
namespace ck { namespace ck {
// Pseudo random number generator // Pseudo random number generator
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment