Coder Social home page Coder Social logo

How embed an __uint128_t? about mlib HOT 2 CLOSED

p-p-h-d avatar p-p-h-d commented on May 14, 2024
How embed an __uint128_t?

from mlib.

Comments (2)

P-p-H-d avatar P-p-H-d commented on May 14, 2024

Your code is nearly right. The oplist definition is ok. The error is somewhere else. You should use :
typedef __uint128_t uint128_t;
instead of
#define uint128_t __uint128_t

The macros M_OPL_name() only works with types defines with typedef (well, to be exact with types that are expanded by the preprocessor as single token type).

What happens is that in TUPLE_DEF2(my_tuple, (x, int), (y, uint128_t)),
uint128_t was replaced by __uint128_t, before M*LIB is able to test if the oplist exists.
So it tests for the existence of the macro M_OPL___uint128_t() instead of M_OPL_uint128_t().
Since such macro doesn't exist, it uses the standard type oplist which is not compatible with
__uint128_t (in C11, it is compatible in C99) due to incompatible OUT_STR, IN_STR, GET_STR, PARSE_STR methods.

from mlib.

mario-tux avatar mario-tux commented on May 14, 2024

Ok, thanks. The use of #define to create new type is an old bad habit...

from mlib.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.