examples: [u]int32 -> [u]int32_t

note: sed -i 's/\b\([u]\?int32\)\b/\1_t/g' *.h *.cc
This commit is contained in:
Mizux Seiha
2021-04-05 17:27:21 +02:00
parent 1078db4e4f
commit e9704f55df
4 changed files with 8 additions and 8 deletions

View File

@@ -55,7 +55,7 @@ ABSL_FLAG(std::string, routing_search_parameters,
namespace operations_research {
// Random seed generator.
int32 GetSeed() {
int32_t GetSeed() {
if (absl::GetFlag(FLAGS_tsp_use_deterministic_random_seed)) {
return ACMRandom::DeterministicSeed();
} else {