Skip to content

Commit

Permalink
update getBits
Browse files Browse the repository at this point in the history
  • Loading branch information
mnneely committed May 13, 2024
1 parent 207dc10 commit 9f38e68
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions R/PMconfig.R
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,12 @@ getPMpath <- function() {
}

getBits <- function() {
#figure out 32 or 64 bit
if (length(grep("64-bit", utils::sessionInfo())) > 0) { return(64) } else { return(32) }
# figure out 32 or 64 bit
if (length(grep("32-bit", utils::sessionInfo())) > 0) {
return(32)
} else {
return(64)
}
}

getFixedColNames <- function() {
Expand Down

0 comments on commit 9f38e68

Please sign in to comment.