Skip to content

Commit db9ebd9

Browse files
chore: remove "/// for integral typedefs"
1 parent a7c8741 commit db9ebd9

21 files changed

+21
-21
lines changed

math/integral_approximation.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@
2222
*/
2323
#include <cassert> /// for assert
2424
#include <cmath> /// for mathematical functions
25-
#include <cstdint> /// for integral typedefs
25+
#include <cstdint>
2626
#include <functional> /// for passing in functions
2727
#include <iostream> /// for IO operations
2828

math/inv_sqrt.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010

1111
#include <cassert> /// for assert
1212
#include <cmath> /// for `std::sqrt`
13-
#include <cstdint> /// for integral typedefs
13+
#include <cstdint>
1414
#include <iostream> /// for IO operations
1515
#include <limits> /// for numeric_limits
1616
/**

math/largest_power.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
*/
1313

1414
#include <cassert> /// for assert
15-
#include <cstdint> /// for integral typedefs
15+
#include <cstdint>
1616
#include <iostream> /// for std::cin and std::cout
1717
/**
1818
* @namespace math

math/lcm_sum.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
*/
1414

1515
#include <cassert> /// for assert
16-
#include <cstdint> /// for integral typedefs
16+
#include <cstdint>
1717
#include <iostream> /// for std::cin and std::cout
1818
#include <vector> /// for std::vector
1919

math/linear_recurrence_matrix.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
* @author [Ashish Daulatabad](https://github.com/AshishYUO)
1919
*/
2020
#include <cassert> /// for assert
21-
#include <cstdint> /// for integral typedefs
21+
#include <cstdint>
2222
#include <iostream> /// for IO operations
2323
#include <vector> /// for std::vector STL
2424

math/magic_number.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
* @author [Neha Hasija](https://github.com/neha-hasija17)
1818
*/
1919
#include <cassert> /// for assert
20-
#include <cstdint> /// for integral typedefs
20+
#include <cstdint>
2121
#include <iostream> /// for io operations
2222

2323
/**

math/modular_exponentiation.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
* @author [Shri2206](https://github.com/Shri2206)
1818
*/
1919
#include <cassert> /// for assert
20-
#include <cstdint> /// for integral typedefs
20+
#include <cstdint>
2121
#include <iostream> /// for io operations
2222
/**
2323
* @namespace math

math/modular_inverse_simple.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
*/
99

1010
#include <cassert> /// for assert
11-
#include <cstdint> /// for integral typedefs
11+
#include <cstdint>
1212
#include <iostream> /// for IO operations
1313

1414
/**

math/sieve_of_eratosthenes.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
*/
1313

1414
#include <cassert>
15-
#include <cstdint> /// for integral typedefs
15+
#include <cstdint>
1616
#include <iostream>
1717
#include <vector>
1818

math/string_fibonacci.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
* @see fibonacci_large.cpp, fibonacci_fast.cpp, fibonacci.cpp
99
*/
1010

11-
#include <cstdint> /// for integral typedefs
11+
#include <cstdint>
1212
#include <iostream>
1313
#ifdef _MSC_VER
1414
#include <string> // use this for MS Visual C

0 commit comments

Comments
 (0)