Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 612980
Collapse All | Expand All

(-)festival-orig/src/modules/MultiSyn/base_class/EST_TSimpleVector.cc (-1 / +2 lines)
Lines 42-47 Link Here
42
42
43
#include "EST_TSimpleVector.h"
43
#include "EST_TSimpleVector.h"
44
#include "EST_matrix_support.h"
44
#include "EST_matrix_support.h"
45
#include <cstring>
45
#include <fstream>
46
#include <fstream>
46
#include "EST_cutils.h"
47
#include "EST_cutils.h"
47
#include <string.h>
48
#include <string.h>
Lines 50-56 template<class T> void EST_TSimpleVector Link Here
50
{
51
{
51
  if (this->p_column_step==1 && a.p_column_step==1)
52
  if (this->p_column_step==1 && a.p_column_step==1)
52
    {
53
    {
53
    resize(a.n(), FALSE);
54
    this->resize(a.n(), FALSE);
54
    memcpy((void *)(this->p_memory), (const void *)(a.p_memory), this->n() * sizeof(T));
55
    memcpy((void *)(this->p_memory), (const void *)(a.p_memory), this->n() * sizeof(T));
55
    }
56
    }
56
else
57
else

Return to bug 612980