Skip to content

Commit

Permalink
Merge pull request #18 from lty419/master
Browse files Browse the repository at this point in the history
Add default values to is_Nullable and is_Unicode
  • Loading branch information
Bin Xu committed Apr 30, 2015
2 parents 25cdc45 + 4e204cb commit bfd4e08
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/edm/edm_model_reader.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -367,10 +367,10 @@ void edm_model_reader::_process_property()
if (m_current_st)
{
::utility::string_t property_name;
bool is_nullable;
bool is_nullable = false;
std::shared_ptr<edm_named_type> type;
unsigned int max_length = undefined_value;
bool is_unicode;
bool is_unicode = false;
unsigned int scale = undefined_value;
unsigned int precision = undefined_value;

Expand Down

0 comments on commit bfd4e08

Please sign in to comment.