Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 985025
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 16, 20262026-05-16T05:06:18+00:00 2026-05-16T05:06:18+00:00

I have the following function: void Register(Data* _pData, uint32 _Line, const char* _pFile, …)

  • 0

I have the following function:

void Register(Data* _pData, uint32 _Line, const char* _pFile, ...)
{
   va_list Args;
   va_start(Args, _pFile);
   for(uint i = 0;i m_NumFloats; ++i)
   {
      _pData->m_Floats[i] = va_arg(Args, fp32);
   }
   va_end(Args);
}

Which is called by the macro:

#define REG(_Name, ...)\
{\
   if(s_##_Name##_Data.m_Enabled)
      Register(&s_##_Name##_Data, __LINE__, __FILE__, ##__VA_ARGS__);\
}\

With the usage:

REG(Test, (fp32)0.42f);

The Data-struct looks like:


struct Data
{
   int m_NumFloats;
   fp32 m_Floats[4];
}

The creation-macro of Data creates the static Data g_YourName_Data and initializes it correctly with a maximum of 4 m_NumFloats.

The va_arg call resolves to 0.0. s_Test_Data exists and the Register-function is called appropriate. va-list just simply won’t let me resolve the first argument into the float that I passed it into. Is there anything specific that I’m missing?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-16T05:06:19+00:00Added an answer on May 16, 2026 at 5:06 am

    Try:

    #define REG(_Name, ...)\
    {\
       if(s_##_Name_Data.m_Enabled)\
          Register(&s_##_Name_Data, __LINE__, __FILE__, __VA_ARGS__);\
    }
    

    Get rid of the token-pasting operator. You we’re also missing a ‘\’ in your macro (maybe a copy-n-paste error?).

    Also, use va_arg(), not va_args(). And I’m not sure if you meant for _Name to be _Name_Data or the other way around.

    Finally, I assumed that fp32 was an alias for float; GCC had this to say to me:

    C:\TEMP\test.c:22: warning: `fp32' is promoted to `double' when passed through `...'
    C:\TEMP\test.c:22: warning: (so you should pass `double' not `fp32' to `va_arg')
    C:\TEMP\test.c:22: note: if this code is reached, the program will abort
    

    You should heed that warning. The program does crash for me if I do not.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Ask A Question

Stats

  • Questions 483k
  • Answers 483k
  • Best Answers 0
  • User 1
  • Popular
  • Answers
  • Editorial Team

    How to approach applying for a job at a company ...

    • 7 Answers
  • Editorial Team

    How to handle personal stress caused by utterly incompetent and ...

    • 5 Answers
  • Editorial Team

    What is a programmer’s life like?

    • 5 Answers
  • Editorial Team
    Editorial Team added an answer I'm assuming you're talking about the CSS .scrollLeft() method? Description:… May 16, 2026 at 7:13 am
  • Editorial Team
    Editorial Team added an answer Nevermind. The upload code needs to be wrapped around :… May 16, 2026 at 7:13 am
  • Editorial Team
    Editorial Team added an answer Like this: var IDs = from e in Entities select… May 16, 2026 at 7:13 am

Trending Tags

analytics british company computer developers django employee employer english facebook french google interview javascript language life php programmer programs salary

Top Members

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.