Skip to content
Snippets Groups Projects
Commit d46a9214 authored by Frank Gaede's avatar Frank Gaede
Browse files

- try to fix Markus' compiler warning w/

    left shift count >= width of type 
parent 9463ea06
No related branches found
No related tags found
No related merge requests found
...@@ -82,7 +82,7 @@ namespace DDSegmentation { ...@@ -82,7 +82,7 @@ namespace DDSegmentation {
*/ */
void setValue(unsigned lowWord, unsigned highWord ) { void setValue(unsigned lowWord, unsigned highWord ) {
setValue( ( lowWord & 0xffffffffUL ) | ( ( highWord & 0xffffffffUL ) << 32 ) ) ; setValue( ( lowWord & 0xffffffffULL ) | ( ( highWord & 0xffffffffULL ) << 32 ) ) ;
} }
/** Operator for setting a new value and accessing the BitField directly */ /** Operator for setting a new value and accessing the BitField directly */
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment