Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit cafab169 authored by Ken Wakasa's avatar Ken Wakasa
Browse files

s/stdint.h/cstdint/

Somehow, we were not able to use cstdint gcc target build. That's no
longer the case with Clang.

Removed unnecessary header inclusions too.

Change-Id: Ic83a4adf696f1d5ec7a9809253f3c95804e622e1
parent e2e41dc2
Loading
Loading
Loading
Loading
+0 −1
Original line number Diff line number Diff line
@@ -18,7 +18,6 @@
#define LATINIME_DIC_NODES_CACHE_H

#include <algorithm>
#include <stdint.h>

#include "defines.h"
#include "suggest/core/dicnode/dic_node_priority_queue.h"
+1 −1
Original line number Diff line number Diff line
@@ -17,7 +17,7 @@
#ifndef LATINIME_DIC_NODE_PROPERTIES_H
#define LATINIME_DIC_NODE_PROPERTIES_H

#include <stdint.h>
#include <cstdint>

#include "defines.h"

+1 −1
Original line number Diff line number Diff line
@@ -18,8 +18,8 @@
#define LATINIME_DIC_NODE_STATE_OUTPUT_H

#include <algorithm>
#include <cstdint>
#include <cstring> // for memmove()
#include <stdint.h>

#include "defines.h"

+1 −1
Original line number Diff line number Diff line
@@ -18,7 +18,7 @@
#define LATINIME_DIC_NODE_STATE_SCORING_H

#include <algorithm>
#include <stdint.h>
#include <cstdint>

#include "defines.h"
#include "suggest/core/dictionary/digraph_utils.h"
+1 −1
Original line number Diff line number Diff line
@@ -17,8 +17,8 @@
#ifndef LATINIME_BLOOM_FILTER_H
#define LATINIME_BLOOM_FILTER_H

#include <cstdint>
#include <cstring>
#include <stdint.h>

#include "defines.h"

Loading