mirror of
https://github.com/keymanapp/keyman.git
synced 2026-09-22 07:37:40 +00:00
chore(developer): fix kmcompx compile errors
Some minor errors post-merge.
This commit is contained in:
parent
2ad0689090
commit
73a080a949
2 changed files with 2 additions and 5 deletions
|
|
@ -3432,7 +3432,7 @@ KMX_DWORD ReadLine(FILE* fp_in , PKMX_WCHAR wstr, KMX_BOOL PreProcess)
|
|||
*p = L' ';
|
||||
continue;
|
||||
}
|
||||
if((*p == L'\\')) {
|
||||
if(*p == L'\\') {
|
||||
LineCarry = TRUE;
|
||||
*p = L' ';
|
||||
continue;
|
||||
|
|
|
|||
|
|
@ -1,6 +1,4 @@
|
|||
|
||||
#ifndef KMX_U16H_H
|
||||
#define KMX_U16H_H
|
||||
#pragma once
|
||||
|
||||
#include <cmath>
|
||||
#include <vector>
|
||||
|
|
@ -37,4 +35,3 @@ KMX_CHAR* strrchr_slash(KMX_CHAR* Name);
|
|||
const KMX_WCHAR* u16rchr_slash(KMX_WCHAR const* Name);
|
||||
|
||||
std::string toHex(int num1);
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue