Mercurial > hg-stable
changeset 46317:d0225a22040c
cext: fix compiler error in revlog.c on Windows with py2
Visual Studio 2008 doesn't have <stdint.h>, and we worked around it before with
this header.
Differential Revision: https://phab.mercurial-scm.org/D9804
author | Matt Harbison <matt_harbison@yahoo.com> |
---|---|
date | Sat, 16 Jan 2021 20:15:10 -0500 |
parents | 6ee9bd69ff7f |
children | e74274fc1b35 |
files | mercurial/cext/revlog.c |
diffstat | 1 files changed, 1 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/mercurial/cext/revlog.c Sat Jan 16 01:02:03 2021 +0100 +++ b/mercurial/cext/revlog.c Sat Jan 16 20:15:10 2021 -0500 @@ -13,10 +13,10 @@ #include <ctype.h> #include <limits.h> #include <stddef.h> -#include <stdint.h> #include <stdlib.h> #include <string.h> +#include "compat.h" #include "bitmanipulation.h" #include "charencode.h" #include "revlog.h"