Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix compilation of primitive types #98

Merged
merged 3 commits into from
May 30, 2022
Merged

Fix compilation of primitive types #98

merged 3 commits into from
May 30, 2022

Commits on May 20, 2022

  1. clang-format all files

    ridiculousfish committed May 20, 2022
    Configuration menu
    Copy the full SHA
    3382ea6 View commit details
    Browse the repository at this point in the history

Commits on May 21, 2022

  1. Ensure that primitive integer types work again

    This addresses the issue where e.g. 'long' and 'long long' are both 64 bit,
    but we only overload for int64_t which is either long or 'long long',
    meaning template instantiation will fail with the other type.
    
    Fixes #96
    ridiculousfish committed May 21, 2022
    Configuration menu
    Copy the full SHA
    603a160 View commit details
    Browse the repository at this point in the history
  2. Migrate some detail bits into detail namespace

    Instead of the libdivide namespace, use the libdivide::detail
    namespace, to limit what we inject.
    ridiculousfish committed May 21, 2022
    Configuration menu
    Copy the full SHA
    a6bf644 View commit details
    Browse the repository at this point in the history