Fixed Windows build (linker error)

This commit is contained in:
Matthias Koefferlein 2020-05-28 00:44:27 +02:00
parent 757cef91fb
commit e94b40cab9
1 changed files with 2 additions and 2 deletions

View File

@ -212,7 +212,7 @@ bool NetShape::interacts_with_transformed (const db::NetShape &other, const Tr &
}
// explicit instantiations
template bool NetShape::interacts_with_transformed<db::ICplxTrans> (const db::NetShape &other, const db::ICplxTrans &trans) const;
template bool NetShape::interacts_with_transformed<db::Trans> (const db::NetShape &other, const db::Trans &trans) const;
template DB_PUBLIC bool NetShape::interacts_with_transformed<db::ICplxTrans> (const db::NetShape &other, const db::ICplxTrans &trans) const;
template DB_PUBLIC bool NetShape::interacts_with_transformed<db::Trans> (const db::NetShape &other, const db::Trans &trans) const;
}