Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: calccrypto/integer
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: master
Choose a base ref
...
head repository: felix-lang/integer
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: master
Choose a head ref
Able to merge. These branches can be automatically merged.
  • 2 commits
  • 5 files changed
  • 1 contributor

Commits on Sep 23, 2018

  1. Copy the full SHA
    10b5a34 View commit details
  2. fix include in cpp file

    skaller committed Sep 23, 2018
    Copy the full SHA
    275d95d View commit details
Showing with 845 additions and 809 deletions.
  1. +8 −0 integer.build
  2. +1 −1 integer.cpp
  3. +6 −808 integer.h
  4. +811 −0 integer.include
  5. +19 −0 integer_config.include
8 changes: 8 additions & 0 deletions integer.build
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
// IMPLEMENTATION BUILD HEADER
#ifndef _INTEGER_BUILD
#define _INTEGER_BUILD
#include "integer_config.include"
#define INTEGER_EXTERN _INTEGER_EXPORT
#endif
#include "integer.include"

2 changes: 1 addition & 1 deletion integer.cpp
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#include "integer.h"
#include "integer.build"

constexpr INTEGER_DIGIT_T integer::NEG1;
constexpr std::size_t integer::OCTETS;
Loading