From 643a1b51c43c28de2ca9a889bd9f55250386b326 Mon Sep 17 00:00:00 2001 From: benyucong Date: Wed, 31 May 2023 18:48:53 +0800 Subject: [PATCH] Merge branch 'fix-big-integer-readme' into 'cnch-ce-merge' fix(clickhosuech@0000): Keep the BigInteger orignal README See merge request dp/ClickHouse!10251 --- base/libbiginteger/README.md | 3 --- 1 file changed, 3 deletions(-) diff --git a/base/libbiginteger/README.md b/base/libbiginteger/README.md index ae508203f1..a16df03dfd 100644 --- a/base/libbiginteger/README.md +++ b/base/libbiginteger/README.md @@ -13,12 +13,9 @@ respectively. Most of the C++ arithmetic operators are overloaded for these classes, so big-integer calculations are as easy as: #include "BigIntegerLibrary.hh" - BigInteger a = 65536; cout << (a * a * a * a * a * a * a * a); - (prints 340282366920938463463374607431768211456) - The code in `sample.cc' demonstrates the most important features of the library. To get started quickly, read the code and explanations in that file and run it. If you want more detail or a feature not shown in `sample.cc', consult the