mirror of
https://github.com/fish-shell/fish-shell
synced 2025-01-12 13:08:49 +00:00
Included missing stdint.h header in utf8.cpp
This commit is contained in:
parent
aabed8279e
commit
a67dd9fbdd
1 changed files with 2 additions and 2 deletions
4
utf8.cpp
4
utf8.cpp
|
@ -13,8 +13,9 @@
|
||||||
* ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
|
* ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
|
||||||
* OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
|
* OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
|
||||||
*/
|
*/
|
||||||
#include <sys/types.h>
|
|
||||||
|
|
||||||
|
#include <sys/types.h>
|
||||||
|
#include <stdint.h>
|
||||||
#include <wchar.h>
|
#include <wchar.h>
|
||||||
|
|
||||||
#include "utf8.h"
|
#include "utf8.h"
|
||||||
|
@ -23,7 +24,6 @@
|
||||||
#include <vector>
|
#include <vector>
|
||||||
#include <limits>
|
#include <limits>
|
||||||
|
|
||||||
|
|
||||||
#define _NXT 0x80
|
#define _NXT 0x80
|
||||||
#define _SEQ2 0xc0
|
#define _SEQ2 0xc0
|
||||||
#define _SEQ3 0xe0
|
#define _SEQ3 0xe0
|
||||||
|
|
Loading…
Reference in a new issue