Compare commits

...

3 Commits

Author SHA1 Message Date
MoneroOcean 4d8a30042e Updated for Ubuntu 24.04 2024-05-03 20:13:04 +03:00
MoneroOcean a760b46501 Updated for Ubuntu 24.04 2024-05-03 20:12:39 +03:00
MoneroOcean 9ef2d782c1 Updated for Ubuntu 24.04 2024-05-03 19:39:19 +03:00
4 changed files with 4 additions and 3 deletions
+1 -1
View File
@@ -31,7 +31,7 @@
"-fno-exceptions -std=gnu11 -march=native -fPIC -DNDEBUG -Ofast -funroll-loops -fvariable-expansion-in-unroller -ftree-loop-if-convert-stores -fmerge-all-constants -fbranch-target-load-optimize2"
],
"cflags_cc": [
"-fexceptions -frtti -std=c++14 -march=native -fPIC -DNDEBUG -Ofast -s -funroll-loops -fvariable-expansion-in-unroller -ftree-loop-if-convert-stores -fmerge-all-constants -fbranch-target-load-optimize2"
"-fexceptions -frtti -std=c++17 -march=native -fPIC -DNDEBUG -Ofast -s -funroll-loops -fvariable-expansion-in-unroller -ftree-loop-if-convert-stores -fmerge-all-constants -fbranch-target-load-optimize2"
],
"xcode_settings": {
"OTHER_CFLAGS": [ "-fexceptions -frtti" ]
+1 -1
View File
@@ -1,6 +1,6 @@
{
"name": "cryptoforknote-util",
"version": "15.2.0",
"version": "15.2.1",
"main": "cryptoforknote-util",
"author": {
"name": "LucasJones",
@@ -26,6 +26,7 @@
#pragma once
#include <cstdint>
#include <set>
#include <list>
#include <vector>
+1 -1
View File
@@ -48,7 +48,7 @@ template <>
struct binary_archive<false> : public binary_archive_base<std::istream, false>
{
explicit binary_archive(stream_type &s) : base_type(s) {
stream_type::streampos pos = stream_.tellg();
auto pos = stream_.tellg();
stream_.seekg(0, std::ios_base::end);
eof_pos_ = stream_.tellg();
stream_.seekg(pos);