Index: source/common/brkiter.cpp |
diff --git a/source/common/brkiter.cpp b/source/common/brkiter.cpp |
index d466fb80d25e952c0ccb9600732fba2d6dc45faa..029ec5e185d8b7b54d004bb5cbf9842c1a376e89 100644 |
--- a/source/common/brkiter.cpp |
+++ b/source/common/brkiter.cpp |
@@ -1,3 +1,5 @@ |
+// Copyright (C) 2016 and later: Unicode, Inc. and others. |
+// License & terms of use: http://www.unicode.org/copyright.html |
/* |
******************************************************************************* |
* Copyright (C) 1997-2015, International Business Machines Corporation and |
@@ -418,6 +420,7 @@ BreakIterator::makeInstance(const Locale& loc, int32_t kind, UErrorCode& status) |
break; |
case UBRK_SENTENCE: |
result = BreakIterator::buildInstance(loc, "sentence", kind, status); |
+#if !UCONFIG_NO_FILTERED_BREAK_ITERATION |
{ |
char ssKeyValue[kKeyValueLenMax] = {0}; |
UErrorCode kvStatus = U_ZERO_ERROR; |
@@ -430,6 +433,7 @@ BreakIterator::makeInstance(const Locale& loc, int32_t kind, UErrorCode& status) |
} |
} |
} |
+#endif |
break; |
case UBRK_TITLE: |
result = BreakIterator::buildInstance(loc, "title", kind, status); |