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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 13, 20262026-06-13T11:05:30+00:00 2026-06-13T11:05:30+00:00

I am writing a C++ wrapper around a legacy API. This API provides me

  • 0

I am writing a C++ wrapper around a legacy API. This API provides me with a pointer value to keep extra data, and I want to implement the Small Buffer Optimization with it.

I have implemented an is_small_pod metafunction that checks whether a given type is POD and it fits within a void*:

template< typename Type >
struct is_small_pod
  : std::integral_constant<
        bool
      , std::is_pod< Type >::type::value
        && sizeof( Type ) <= sizeof( void* )
    >
{};

and I’m setting the value like this:

// void*& param;
if( detail::is_small_pod< Type >() )
{
    *static_cast< Type* >( &param ) = value;
} else {
    param = new Type( value );
}

Am I implementing this optimization correctly? I believe this will fail when the value alignment is not compatible with the alignment of a pointer (odd corner case as it may be). Is that situation even possible, or am I just overthinking it? How should I extend my metafunction to check for compatible alignment as well?

  • 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-13T11:05:31+00:00Added an answer on June 13, 2026 at 11:05 am

    It is not possible for the alignment of a type to be greater than the size of that type.

    3.11 Alignment [basic.align]

    […] An alignment is an implementation-defined integer value representing the number of bytes between successive addresses at which a given object can be allocated.

    5.3.3 Sizeof [expr.sizeof]

    2 – […] the size of an array of n elements is n times the size of an element.

    So, your code can only break if alignof(void *) < sizeof(void *), which is not the case on most platforms.

    For safety, you can write:

    template< typename Type >
    struct is_small_pod
      : std::integral_constant<
            bool
          , std::is_pod< Type >::type::value
            && sizeof( Type ) <= sizeof( void* )
            && alignof( Type ) <= alignof( void* )
        >
    {};
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I'm writing a very simple and small wrapper around sqlite3, and use sqlite3_get_table() to
I'm writing a wrapper class around a TcpClient which raises an event when data
I'm writing a wrapper around a fairly large unmanaged API. Almost every imported method
I'm writing a small wrapper around libxml2 in C++, and I'm trying to work
I'm writing a wrapper around a C library in Objective-C. The library allows me
I'm writing a wrapper for communication with an external binary API. The API uses
I am writing a wrapper library for log4net. This library should be able to
I am writing a wrapper around the DefaultHttpClient to handle some of the error-prone
I'm writing a simple wrapper around the Win32 FILETIME structure. boost::datetime has most of
I'm writing a managed wrapper around DirectSound. (It's a simple partial wrapper that solves

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.