function FileOptions::setCcEnableArenas
Enables the use of arenas for the proto messages in this file. This applies only to generated classes for C++.
Generated from protobuf field <code>optional bool cc_enable_arenas = 31 [default = true];</code>
Parameters
bool $var:
Return value
$this
File
-
vendor/
google/ protobuf/ src/ Google/ Protobuf/ Internal/ FileOptions.php, line 795
Class
- FileOptions
- Generated from protobuf message <code>google.protobuf.FileOptions</code>
Namespace
Google\Protobuf\InternalCode
public function setCcEnableArenas($var) {
GPBUtil::checkBool($var);
$this->cc_enable_arenas = $var;
return $this;
}