Added subrangeLowerBound field to SourceLanguageInfo specifying the default

lower subrange type bound for the source language.


git-svn-id: file:///srv/svn/repos/haiku/haiku/trunk@33310 a95241bf-73f2-0310-859d-f6bbb57e9c96
This commit is contained in:
Ingo Weinhold 2009-09-27 04:15:58 +00:00
parent 061c5fe806
commit 8fa563df31
2 changed files with 3 additions and 0 deletions

View File

@ -12,12 +12,14 @@ UnknownSourceLanguageInfo::UnknownSourceLanguageInfo()
{
name = "unknown";
arrayOrdering = DW_ORD_row_major;
subrangeLowerBound = 0;
}
CFamilySourceLanguageInfo::CFamilySourceLanguageInfo()
{
arrayOrdering = DW_ORD_row_major;
subrangeLowerBound = 0;
}

View File

@ -11,6 +11,7 @@
struct SourceLanguageInfo {
const char* name;
uint8 arrayOrdering;
uint64 subrangeLowerBound;
};