1
0
mirror of https://gitee.com/drabel/LibQQt.git synced 2025-01-04 10:18:44 +08:00

适配网络公共头文件到arm

This commit is contained in:
tianduanrui 2017-12-31 15:06:15 +08:00
parent bc3e0df6bd
commit c50b5b6549
2 changed files with 5 additions and 2 deletions

View File

@ -6,7 +6,7 @@ bool tagWifi::isValid()
return wifi[ESSID_BSSID].isEmpty() ? false : true;
}
#ifdef __EMBEDDED_LINUX__
#ifdef __MIPS_LINUX__
tagWifi& tagWifi::operator= (tagWifi& w)
#else
tagWifi& tagWifi::operator=(const tagWifi& w)

View File

@ -44,7 +44,10 @@ typedef struct QQTSHARED_EXPORT tagWifi
bool isValid();
#ifdef __EMBEDDED_LINUX__
/* only mips32 no use const, arm used
* MIPS32不使用constARM32使用了
*/
#ifdef __MIPS_LINUX__
tagWifi& operator= (tagWifi& w);
#else
tagWifi& operator=(const tagWifi& w);