Skip to content

Commit ba64b3c

Browse files
fix: add <cstdint> to string/**
1 parent 4707b72 commit ba64b3c

File tree

2 files changed

+2
-0
lines changed

2 files changed

+2
-0
lines changed

strings/manacher_algorithm.cpp

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@
1111
*/
1212

1313
#include <cassert> /// for assert
14+
#include <cstdint> /// for integral typedefs
1415
#include <iostream> /// for IO operations
1516
#include <vector> /// for std::vector STL
1617
#ifdef _MSC_VER

strings/z_function.cpp

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@
1111
* @author [Ritika Gupta](https://github.com/RitikaGupta8734)
1212
*/
1313

14+
#include <cstdint> /// for integral typedefs
1415
#include <iostream> /// for IO operations
1516
#ifdef _MSC_VER
1617
#include <string> /// for string (use this for MS Visual C++)

0 commit comments

Comments
 (0)