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 126737
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 11, 20262026-05-11T05:21:55+00:00 2026-05-11T05:21:55+00:00

When comparing enums that come from different sources such as those of the following

  • 0

When comparing enums that come from different sources such as those of the following code GCC emits warnings. Is there a way to avoid these warnings without c-style casts?

struct Enumerator {     enum { VALUE = 5 }; };  template<int V> struct TemplatedEnumerator {     enum { VALUE = V }; };  if(Enumerator::VALUE == TemplatedEnumerator<5>::VALUE) {   ... } 

And GCC emits the following type of warning:

GCC: warning: comparison between 'enum ...' and 'enum ...' 
  • 1 1 Answer
  • 2 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. 2026-05-11T05:21:55+00:00Added an answer on May 11, 2026 at 5:21 am

    Simple answer in your case: don’t use an enum, use an inline-defined static const int:

    struct Enumerator {     static int const VALUE = 5; };  template<int V> struct TemplatedEnumerator {     static int const VALUE = V; }; 

    In this special case, that’s equivalent and all compilers of the last few years should treat it so (I know for a fact that all the major ones do).

    See also: static const Member Value vs. Member enum : Which Method is Better & Why?

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

Sidebar

Related Questions

I'm comparing the following code in C++ and C# and C# (Mono 2.4) seems
gcc 4.4.1 c89 I have the following code: static enum states { ACTIVE, RUNNING,
I have an enum in my code that is the following: enum Status {In-Active,
Why comparing to null is so unstable? Just code. IronRuby 0.9.4.0 on .NET 2.0.50727.4927
I need help with comparing a column to a string. There is a column
Short of recursing and comparing dates of files/directories, is there a better way of
Currently, we use a giant configuration object that is serialized to/from XML. This has
Comparing those two values shall result in a true: 53.9173333333333 53.9173
I know that Java enums are compiled to classes with private constructors and a
Is there anyway to check if an enum exists by comparing it to a

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.