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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 8, 20262026-06-08T13:48:30+00:00 2026-06-08T13:48:30+00:00

I have a header file called custom_types.h that was working fine until now. I

  • 0

I have a header file called custom_types.h that was working fine until now. I have a few enums declared in it and there is no implementation file with the same name.

These are the two declarations in the file:

enum playback_type {
    NOTE_PB,
    SONG_PB
};

enum note_name {
    C_REG = 1,
    C_SHARP = 2,
    D_REG = 3
};

Now for some reason I’m getting conflicting declaration errors (full size here):
enter image description here

You guys have any idea why this is happening? I don’t understand how a single definition can be conflicting.

  • 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-06-08T13:48:31+00:00Added an answer on June 8, 2026 at 1:48 pm

    Use guards:

    //custom_types.h
    
    #ifndef custom_types_h  //this is called guard!
    #define custom_types_h   
    
    enum playback_type {
        NOTE_PB,
        SONG_PB
    };
    
    enum note_name {
        C_REG = 1,
        C_SHARP = 2,
        D_REG = 3
    };
    
    #endif  //dont forget this line!
    

    Such guards ensure that the content of the header file will be included once in one translation unit (TU).

    If your compiler supports (modern compilers support this), you could use #pragma once as:

    //custom_types.h
    
    #pragma once  //it ensures that the content of this header will be 
                  //included once in one translation unit
    
    enum playback_type {
        NOTE_PB,
        SONG_PB
    };
    
    enum note_name {
        C_REG = 1,
        C_SHARP = 2,
        D_REG = 3
    };
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have a file called header.php that I am including on every page on
I have a class header file called Grid.h that contains the following 2 private
I have enum declared in a header file called sm.h enum GameStates { STATE_NULL
I have a file that is called header (the header of my site).. I
Let's say I have a header file called inclusions.h that has all the #include
I have some useful typedefs on a header file called utypes.h. I have decided
I have a file called header.html and it is included by base.html . In
I have a header file buildTree.h and a C file buildTree.c there is a
I have a header file, lets say Common.h, that is included in all of
I have a header file with all the enums listed (#ifndef #define #endif construct

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.