-
Notifications
You must be signed in to change notification settings - Fork 9.5k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Replace more GenericVector by std::vector for src/ccstruct
Signed-off-by: Stefan Weil <[email protected]>
- Loading branch information
Showing
2 changed files
with
3 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,7 +2,6 @@ | |
// File: fontinfo.h | ||
// Description: Font information classes abstracted from intproto.h/cpp. | ||
// Author: [email protected] (Ray Smith) | ||
// Created: Tue May 17 17:08:01 PDT 2011 | ||
// | ||
// (C) Copyright 2011, Google Inc. | ||
// Licensed under the Apache License, Version 2.0 (the "License"); | ||
|
@@ -54,7 +53,7 @@ struct FontSpacingInfo { | |
int16_t x_gap_before; | ||
int16_t x_gap_after; | ||
GenericVector<UNICHAR_ID> kerned_unichar_ids; | ||
GenericVector<int16_t> kerned_x_gaps; | ||
std::vector<int16_t> kerned_x_gaps; | ||
}; | ||
|
||
/* | ||
|