1
0
Fork 0
mirror of https://github.com/ruby-opencv/ruby-opencv synced 2023-03-27 23:22:12 -04:00

fix documentation warnings

This commit is contained in:
ser1zw 2016-05-02 03:39:01 +09:00
parent c2f7aa3766
commit 9650602eef
5 changed files with 67 additions and 67 deletions

View file

@ -130,8 +130,8 @@ namespace rubyopencv {
* Set width
*
* @overload width=(value)
* @param value [Integer] Width
* @return [Rect] +self+
* @param value [Integer] Width
* @return [Rect] +self+
*/
VALUE rb_set_width(VALUE self, VALUE width) {
obj2rect(self)->width = NUM2INT(width);
@ -152,8 +152,8 @@ namespace rubyopencv {
* Set height
*
* @overload height=(value)
* @param value [Integer] Height
* @return [Rect] +self+
* @param value [Integer] Height
* @return [Rect] +self+
*/
VALUE rb_set_height(VALUE self, VALUE height) {
obj2rect(self)->height = NUM2INT(height);