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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 24, 20262026-05-24T00:04:46+00:00 2026-05-24T00:04:46+00:00

Sorry for a stupid question, but if I need to ensure the alignment of

  • 0

Sorry for a stupid question, but if I need to ensure the alignment of a structure / class / union, should I add attribute((aligned(align))) to typedef declaration?

class myAlignedStruct{} __attribute__ ((aligned(16)));
typedef myAlignedStruct myAlignedStruct2; // Will myAlignedStruct2 be aligned by 16 bytes or not?
  • 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-24T00:04:47+00:00Added an answer on May 24, 2026 at 12:04 am

    should I add attribute((aligned(align))) to typedef declaration?

    No… typedefs are just pseudonyms or aliases for the actual type specified, they don’t exist as a separate type to have different alignment, packing etc..

    #include <iostream>
    
    struct Default_Alignment
    {
        char c;
    };
    
    struct Align16
    {
        char c;
    } __attribute__ ((aligned(16)));
    
    typedef Align16 Also_Align16;
    
    int main()
    {
        std::cout << __alignof__(Default_Alignment) << '\n';
        std::cout << __alignof__(Align16) << '\n';
        std::cout << __alignof__(Also_Align16) << '\n';
    }
    

    Output:

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

Sidebar

Related Questions

Sorry for stupid question. but do I need to use standart model validation, such
Sorry if this sounds like a really stupid question, but I need to make
Sorry if this is a stupid question but new to this so need some
sorry if you'll find this question stupid, but I really need help. Here's some
Sorry the question may sound stupid, but I do need one. Right now I'm
first sorry if its a stupid question but im lost a bit. So when
Sorry if this is a stupid question, but is there an easy way to
Really stupid question, sorry, but I can't find it on google (I'm sure it's
I'm sorry if it's a stupid question, but I don't now how to call
Sorry if this question seems stupid, but it's stumped me for a couple days,

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.