mirror of
https://github.com/reactos/reactos.git
synced 2025-02-23 17:05:46 +00:00
[0.4.10][NETREG] Fix 1 MSVC2010SP1 x86 dbg warning C4065 CORE-18104
the warning can be observed with MSVC 2010SP1 (16.0.40219.1) x86 target in dbg configuation:
[11432/11751] Building CXX object modules\rosapps\applications\net\netreg\CMakeFiles\netreg.dir\netreg.cpp.obj
C:\047rls\reactos\modules\rosapps\applications\net\netreg\netreg.cpp(188) : warning C4065: switch statement contains 'default' but no 'case' labels
partial pick of 0.4.15-dev-2951-g 5d8e834897
This commit is contained in:
parent
b5f5dcf336
commit
023204786b
1 changed files with 3 additions and 3 deletions
|
@ -182,10 +182,10 @@ private:
|
|||
}
|
||||
|
||||
string present_value( DWORD type, const char *data, DWORD len ) {
|
||||
switch( type ) {
|
||||
default:
|
||||
//switch( type ) {
|
||||
//default:
|
||||
return bindump( data, len );
|
||||
}
|
||||
//}
|
||||
}
|
||||
|
||||
void process_valid_request( HKEY open_reg_key, string key_name ) {
|
||||
|
|
Loading…
Reference in a new issue