Skip to content

Commit f02e50d

Browse files
committed
Fix new compilation errors
1 parent c550d6d commit f02e50d

File tree

6 files changed

+10
-0
lines changed

6 files changed

+10
-0
lines changed

src/transform/AliasCodec.cpp

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@ limitations under the License.
1515

1616
#include <algorithm>
1717
#include <vector>
18+
#include <stdexcept>
1819

1920
#include "AliasCodec.hpp"
2021
#include "../Global.hpp"

src/transform/EXECodec.cpp

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,8 @@ See the License for the specific language governing permissions and
1313
limitations under the License.
1414
*/
1515

16+
#include <stdexcept>
17+
1618
#include "../Global.hpp"
1719
#include "../Magic.hpp"
1820
#include "EXECodec.hpp"

src/transform/FSDCodec.cpp

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,8 @@ See the License for the specific language governing permissions and
1313
limitations under the License.
1414
*/
1515

16+
#include <stdexcept>
17+
1618
#include "FSDCodec.hpp"
1719
#include "../Global.hpp"
1820
#include "../Magic.hpp"

src/transform/RLT.cpp

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@ limitations under the License.
1515

1616
#include <algorithm>
1717
#include <cstring>
18+
#include <stdexcept>
1819

1920
#include "RLT.hpp"
2021
#include "../Global.hpp"

src/transform/UTFCodec.cpp

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,9 @@ limitations under the License.
1515

1616
#include <algorithm>
1717
#include <cstring>
18+
#include <stdexcept>
1819
#include <vector>
20+
1921
#include "UTFCodec.hpp"
2022
#include "../Global.hpp"
2123
#include "../types.hpp"

src/transform/ZRLT.cpp

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,8 @@ limitations under the License.
1515

1616
#include <cstring>
1717
#include <stddef.h>
18+
#include <stdexcept>
19+
1820
#include "../Global.hpp"
1921
#include "ZRLT.hpp"
2022

0 commit comments

Comments
 (0)