2012-04-17 15 views
7

-Wconversion wytwarza ostrzeżenia, gdy przypisuję wartość do pola bitowego z g ++.C++ pola bitów i -Wconversion

Plik źródłowy: wyjście

struct Foo 
{ 
public: 
    unsigned int x : 4; 
    unsigned int y : 9; 
    unsigned int z : 17; 
}; 

int main(int, char**) 
{ 
    int a = 12; 
    Foo f; 
    f.x = a; 
    f.x = (unsigned int)a; 
    f.x = (unsigned char)a; 
    f.x = (unsigned short)a; 
    f.x = (unsigned)a; 

    f.y = a; 
    f.y = (unsigned int)a; 
    f.y = (unsigned char)a; // no warning, sizeof(char) < 9 
    f.y = (unsigned short)a; 
    f.y = (unsigned)a; 

    f.z = a; 
    f.z = (unsigned int)a; 
    f.z = (unsigned char)a; // no warning, sizeof(char) < 17 
    f.z = (unsigned short)a; // no warning, sizeof(char) < 17 
    f.z = (unsigned)a; 
} 

Kompilacja:

$ g++ --version 
g++ (Ubuntu/Linaro 4.6.1-9ubuntu3) 4.6.1 
<snip> 
$ g++ -Wconversion test.cpp 
test.cpp: In function ‘int main(int, char**)’: 
test.cpp:13:8: warning: conversion to ‘unsigned char:4’ from ‘unsigned int’ may alter its value [-Wconversion] 
test.cpp:14:22: warning: conversion to ‘unsigned char:4’ from ‘unsigned int’ may alter its value [-Wconversion] 
test.cpp:15:23: warning: conversion to ‘unsigned char:4’ from ‘unsigned char’ may alter its value [-Wconversion] 
test.cpp:16:24: warning: conversion to ‘unsigned char:4’ from ‘short unsigned int’ may alter its value [-Wconversion] 
test.cpp:17:18: warning: conversion to ‘unsigned char:4’ from ‘unsigned int’ may alter its value [-Wconversion] 
test.cpp:19:8: warning: conversion to ‘short unsigned int:9’ from ‘unsigned int’ may alter its value [-Wconversion] 
test.cpp:20:22: warning: conversion to ‘short unsigned int:9’ from ‘unsigned int’ may alter its value [-Wconversion] 
test.cpp:22:24: warning: conversion to ‘short unsigned int:9’ from ‘short unsigned int’ may alter its value [-Wconversion] 
test.cpp:23:18: warning: conversion to ‘short unsigned int:9’ from ‘unsigned int’ may alter its value [-Wconversion] 
test.cpp:25:8: warning: conversion to ‘unsigned int:17’ from ‘unsigned int’ may alter its value [-Wconversion] 
test.cpp:26:22: warning: conversion to ‘unsigned int:17’ from ‘unsigned int’ may alter its value [-Wconversion] 
test.cpp:29:18: warning: conversion to ‘unsigned int:17’ from ‘unsigned int’ may alter its value [-Wconversion] 

Chcę -Wconversion włączone do innych części mojego projektu (w tym w tym pliku). Jak mogę "naprawić" instrukcje przypisania tutaj, aby nie otrzymywać ostrzeżeń?

+0

Co się stanie, jeśli zdją się 'int'? –

+0

@ 0A0D zobacz aktualizacje. – robert

Odpowiedz

11

Upewnij się, że konwersja nie może zostać przepełniona. Oto jeden ze sposobów:

struct Foo 
{ 
public: 
    unsigned int x : 4; 
    unsigned int y : 9; 
    unsigned int z : 17; 
}; 

int main(int, char**) 
{ 
    int a = 12; 
    Foo f; 
    f.x = static_cast<unsigned int>(a & 15);  
    f.y = static_cast<unsigned int>(a & 511); 
    f.z = static_cast<unsigned int>(a & 131071); 
} 
+0

To działa. Dzięki. – robert

-1

Wconversion dadzą ostrzeżenie za każdym razem jest możliwe, że niejawna konwersja może zmienić swoją wartość. To powiedziawszy, nie ma problemu z tobą kodu.

Używanie jak wspomniano powyżej, rozwiąże problem.

Some more information