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

  • Home
  • SEARCH
  • 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 3354230
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 18, 20262026-05-18T02:14:50+00:00 2026-05-18T02:14:50+00:00

In one of the C source code files I found the following line (macro):

  • 0

In one of the C source code files I found the following line (macro):

#define USE(x) (x) = (x)

It is used like this:

int method(Obj *context)
    {
    USE(context);
    return 1;
    }

After googling for it, I found the following description:

// Macro to get rid of some compiler
warnings

Could you please tell me more about this macro?

Thanks for your answers!

  • 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-18T02:14:51+00:00Added an answer on May 18, 2026 at 2:14 am

    Some compilers complain when variables are never actually used for anything. for instance:

    int main(int argc, char **argv) {
      return 0;
    }
    

    Gives:

    Output from llvm C/C++/Fortran front-end (llvm-gcc)
    
    /tmp/webcompile/_7618_1.c: In function 'main':
    /tmp/webcompile/_7618_1.c:9: warning: unused parameter 'argc'
    /tmp/webcompile/_7618_1.c:9: warning: unused parameter 'argv'
    

    Queerly, I can just get rid of those warnings using your macro:

    #define USE(x) (x) = (x)
    
    
    int main(int argc, char **argv) {
      USE(argc); /* get rid of warnings */
      USE(argv); /* get rid of warnings */
      return 0;
    }
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I found one source which successfully overrode Time.strftime like this: class Time alias :old_strftime
In the following one to many CREATE TABLE source(id int, name varchar(10), PRIMARY KEY(id));
How would one programatically reproduce the following effect? (source: artext.co.uk ) I'd like to
I lost the source code from one project I did on the company I'm
Does any one know from where can I download source code for Cassini. I
Say I'm interested in the source for one particular Linux utility, like factor .
Adding source files more than one directory away (e.g. ../../source.cpp or ../../../somewhere_else/source.cpp, vs. just
In my application, I alter some part of XML files, which begin like this:
One problem I have with open-source is not often the product or documentation, but
If one wants to paginate results from a data source that supports pagination we

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.