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

More simplifications #137

Merged
merged 25 commits into from
Jun 19, 2019
Merged
Changes from 1 commit
Commits
Show all changes
25 commits
Select commit Hold shift + click to select a range
58e16e5
Replaced most fc::shared_ptr with std::shared_ptr
pmconrad Apr 5, 2019
7cf3717
Intermediate
pmconrad Apr 26, 2019
19bbc40
Added retain where applicable
pmconrad Apr 27, 2019
7506aae
Moved retain/release to task_base
pmconrad May 2, 2019
022c40d
Removed unused real128
pmconrad May 2, 2019
648d969
Remove unused header
pmconrad May 2, 2019
a3e2410
Replace fc::uint128 with boost::multiprecision::uint128_t
pmconrad May 7, 2019
632a907
Replace fc::array with std::array
pmconrad May 22, 2019
a8337ec
Added constexpr where applicable
pmconrad May 31, 2019
0aac8a4
Replaced fc::forward with std::forward
pmconrad Jun 3, 2019
8ad041c
Replaced fc::deduce with std::remove_reference<std::remove_const<>>
pmconrad Jun 3, 2019
1025c36
Replaced fc::nullptr_t with std::nullptr_t
pmconrad Jun 3, 2019
f732a58
Replace NO_RETURN with [[noreturn]] standard attribute
pmconrad Jun 3, 2019
a11a50d
Replaced true_type, false_type, is_class, is_enum with std type_traits
pmconrad Jun 3, 2019
8196eb9
Added fc::int128_t
pmconrad Jun 6, 2019
7649f1f
Removed broken http_server + unused http_api
pmconrad Jun 6, 2019
79b2a0d
Add support for native 128bit types
pmconrad Jun 8, 2019
40797b1
Fixed typo
pmconrad Jun 10, 2019
f1746b7
Make data_size static in hash classes
pmconrad Jun 10, 2019
b16bf00
Made task_base destructor virtual
pmconrad Jun 10, 2019
1bda001
Use common inline functions for splitting/combining uint128 to/from t…
pmconrad Jun 11, 2019
ed7eefe
Avoid array copy
pmconrad Jun 11, 2019
3fa4fa6
Fixed typo
pmconrad Jun 19, 2019
491fd31
Replace 0 with nullptr
pmconrad Jun 19, 2019
deb9d4f
Make task internal storage private
pmconrad Jun 19, 2019
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Remove unused header
  • Loading branch information
pmconrad committed Jun 6, 2019

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
commit 648d969fb9467f37e0955093f8a402d11ed2a1f9
1 change: 0 additions & 1 deletion include/fc/utility.hpp
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
#pragma once
#include <stdint.h>
#include <new>

#ifdef _MSC_VER
#pragma warning(disable: 4482) // nonstandard extension used enum Name::Val, standard in C++11