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 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

#define __T(x) L ## x Found in code from one of the MFC source
I would like to compile c# source code from a string. I know this
I have some HTML errors in my output source code, coming from one of
In PHP, I've noticed people put the @ symbol in source code comments. One
I`m reading the code of some open source project. I see that in one
For example, I want to use both text/template and html/template in one source file.
So after I modify one of my source files in emacs , when I
I accidentally happened to find this in one of the source codes I was
I'm building a custom Ubuntu kernel and have modified one of the source files.
In my application, I alter some part of XML files, which begin like this:

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.